Static and Instance Members

Class members can be either instance or static members. It is possible to think of static members as belonging to classes and instance members as belonging to objects (instances of classes).

When a field, method, property, event or constructor includes the Shared modifier, it is a static member. Constant declarations are implicitly static. Static members have the following characteristics:

If a class member declaration does not contain the Shared modifier, it is an instance member. Instance members have the following characteristics:

See also:

Class Members