Ok hopefully this does not get deleted because I really am interested in some input on my question but I realize it is a bit subjective. I really like in C# when defining a varaible of a type I can use the same name but just have the 1st letter lower case to differentiate it from its type; I see it done often:
MyType myType = new MyType();
Ok I can't do this in VB.NET because it is not a case sensitive language so I end up doing all sorts of stuff (keep improving) to create a name for the variable. I realize I can use an underscore "_" in front of the type, but I don't really like that, as that is also used to denote class level variables (or 'm' is used too). So I end up always trying something like:
Dim Typ As New MyType()
Ok it works, but I like the C# way better because it makes so much sense. Just make the 1st letter lowercase.
Any suggestions other than the underscore preceeding the variable name on this topic?
Thanks!