What is Shared (static) member?- It belongs to the type but not to any instance of a type. - It can be accessed without creating an instance of the type. - It can be accessed using the type name instead of the instance name. - It can't refer to any instance data.
|