What is the use of shared variable in vb.net?
|
feedback
|
|
Same as static in C# and most other languages. It means that every object in the class uses the same copy of the variablle, property or method. When used with a method as it is static you don't need an object instance.
rather than
| |||||||||
feedback
|
|
The "shared" keyword in VB.NET is the equivalent of the "static" keyword in C#. In VB.NET, the shared keyword can only be applied to methods within a class, however, in C#, the static keyword can be applied to both methods within a normal class, and also at the class level to make the entire class static. A "shared" or "static" method acts upon the "type" (i.e. the class) rather than acting upon an instance of the type/class. Since shared methods (or variables) act upon the type rather than an instance, there can only ever be one "copy" of the variable or method as opposed to many copies (one for each instance) in the case of non-shared (i.e. instance) methods or variables. For example: If you have a class, let's call it MyClass with a single non-shared method called MyMethod.
In order to call that method you would need an instance of the class in order to call the method. Something like:
If this method was then made into a "shared" method (by adding the "shared" qualifier on the method definition, you no longer need an instance of the class to call the method.
and then:
You can also see examples of this in the .NET framework itself. For example, the "string" type has many static/shared methods. ie.
Here's a good article that explains it further: | ||||
feedback
|
|
Simply whenever you want to have single instance of variable for entire application, shared between objects of your class. Instead of 1-per-object. | |||
|
feedback
|