The static modifier is used to declare a static member, which does not need to be instantiated in order to be accessed, but instead is accessed simply through its name, i.e. DateTime.Now.
static can be used with classes, fields, methods, properties, operators, events, and constructors.
While an in...