what is Static keyword in C#?
Ask by Manish Kumar
Updated 15 Sep 2020
Static is a keyword used with class. It can be also used with method,member,field, property . If a class is made static then all the member of class should be of static type. We use static variable when we need only one copy of it.