§Modifers for variables: public (accessible anywhere); internal (in current program only); protected (in current class or subclasses); protected internal (protected or internal); private (in current class only)
§
§Modifiers for declaring fields (non-local variables): internal (in current program only), new (new instance of an object); private (in current class only); protected (in current class or subclasses); readonly (cannot be changed after first initialization); static (methods can be called on the base class – an instance does not have to be created)
§