vote up 1 vote down star

Where is the documentation for valid property names in .NET? Obviously things like space, * or & aren't valid in a property name, but where is this documented?

flag

42% accept rate
for extra points, if the spec varies from language to language, what happens if I use the TypeBuilder class to generate a class with properties? – qntmfred Sep 29 at 18:25

4 Answers

vote up 3 vote down check

http://msdn.microsoft.com/en-us/library/aa664670%28VS.71%29.aspx

From the language spec. Property names are identifiers just like members and functions. Granted, there are standard naming conventions elsewhere that are optional, but greatly encouraged.

link|flag
vote up 8 vote down

You can look the information up for a particular language on the platform, here are a few.

C# Language
VB Language

More specifically: C# Property Declaration

link|flag
vote up 3 vote down

The rules for valid identifiers apply to the properties as well.

Start looking here: C# Language Specification - 2.4.2 Identifiers

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.