themster Posted November 9, 2003 Posted November 9, 2003 Is there any way that I can create a public function in my class that is called And. I get an understandable error saying that And is a reserved word. Is there any way around this problem? In the System.Collections.BitArray class they use And as a function name. How do they do that? Quote
*Experts* mutant Posted November 9, 2003 *Experts* Posted November 9, 2003 Public Function [And]() As Object '... End Function If you want to name your method with a reserved word, putting brackets around it will let you do it. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.