Is it good programming practice to declare a variable with the same name as the name of the class it belongs to? i.e.
I suppose if you use a different name you can use the class name to get a drop down showing just the shared methods and properties, which is a small argument against doing this. Otherwise, are there any issues?
Code:
Dim Employee as Employee
I suppose if you use a different name you can use the class name to get a drop down showing just the shared methods and properties, which is a small argument against doing this. Otherwise, are there any issues?