G
Guest
I have been reading "Design Guidelines for Developing Class Libraries" at
http://msdn2.microsoft.com/en-us/library/ms229042.aspx. Is it correct that
they are recommending camelCase for private member variables? Doesn't this
create problems for case-insensitive languages when we create a private
member variable along with properties?
For example
Private thisIsAVariable As Int32
Public Property ThisIsAVariable As Int32
Get
Return thisIsAVariable
End Get
Set(ByVal Value As Int32)
thisIsAVariable = Value
End Set
End Property
http://msdn2.microsoft.com/en-us/library/ms229042.aspx. Is it correct that
they are recommending camelCase for private member variables? Doesn't this
create problems for case-insensitive languages when we create a private
member variable along with properties?
For example
Private thisIsAVariable As Int32
Public Property ThisIsAVariable As Int32
Get
Return thisIsAVariable
End Get
Set(ByVal Value As Int32)
thisIsAVariable = Value
End Set
End Property