B
Brian Henry
When you say shared in vb what does it exactly mean... the other languages
use static in the same place of this in .NET here is an example
[Visual Basic]
Public Shared Event Idle As EventHandler
Shared = Static according to the .net documenation ive read... in c++ we
used static to mean a value that stayed there all the time such as a counter
that kept track of how many times a class member was called from any number
of instantiations... for an example... a item that stayed in memory over any
number of instantiations... what does this shared clause mean in vb? is it
similar to what i described or diffrent.. thanks!
use static in the same place of this in .NET here is an example
[Visual Basic]
Public Shared Event Idle As EventHandler
Shared = Static according to the .net documenation ive read... in c++ we
used static to mean a value that stayed there all the time such as a counter
that kept track of how many times a class member was called from any number
of instantiations... for an example... a item that stayed in memory over any
number of instantiations... what does this shared clause mean in vb? is it
similar to what i described or diffrent.. thanks!