A
Alex Stevens
Hi All,
In the absence of any predefined standards, I was wondering how to name and
implement my enum in a class.
My dilema is:
When I (for example) have an integer property in my class I'll use a class
level variable called mintCount and the property sub accepts a variable
called intCount and then assigns mintCount = intCount.
I use the int because the variable being accepted and stored is an integer.
How would I name my enum in the same way?:
I have:
Public Enum SQLType
Access2000
SQLServer
End Enum
I store the class level variable name as mSQLType, but I'm unsure how to
name the property sub variable?
Thanks
Alex
In the absence of any predefined standards, I was wondering how to name and
implement my enum in a class.
My dilema is:
When I (for example) have an integer property in my class I'll use a class
level variable called mintCount and the property sub accepts a variable
called intCount and then assigns mintCount = intCount.
I use the int because the variable being accepted and stored is an integer.
How would I name my enum in the same way?:
I have:
Public Enum SQLType
Access2000
SQLServer
End Enum
I store the class level variable name as mSQLType, but I'm unsure how to
name the property sub variable?
Thanks
Alex