Explain static keyword in C#?
Ask by Anonymous User
Updated 18 Sep 2020
“Static” keyword can be used for declaring a static member. When the class is made static then all the members of the class are also made static. If the variable is made static then it will have a single instance and the value change is updated in this instance.