I see I can write :
protected static
in my C# class (in my case, an aspx.cs). As well as :
private static
Static is a modifier.. And protected and private are access modifier. Access modifier specify the scope of the variable. Static modifier is used when we want field or method to be singleton thus we don't have to access them by creating the object , rather they can be called through class name directly