Can any one explain me the difference between the Dim and Private inside a form class
|
|
|
Complete information here Dim - declare and allocate space for a variable Private - access modifier specifier I believe your question comes from the fact that you sometimes see things like:
In the above example mVar1 and mVar2 declarations are logically equivalent - they both boil down to This happens due to:
|
|||
|
|
|
Dim & Private are two different things. Dim is used to declare variables and allocate memory space. Private is used as access modifier for the variable, on how your variable should be accessed. If you didn't specify an access modifier on a variable it will be Private by default. You can optionally omit Dim by declaring the variable after the access modifier. |
||||
|
|
|
I am a C# developer learning VB for the first time. Therefore Dim is a new keyword for me. I guess I realized that it is private by default when I tried to access it in another class. However, I think it's interesting that Visual Studio automatically removes the Dim keyword when you attempt to add a Public access modifier. Helps me to relate to Akshara who asked the difference between Dim and Private. Y use the Dim keyword at all? Either specify Private, Public or whatever else is available in the VB language. Seems it would be easier to follow along. |
|||
|
|
