What can I do with a protected/private static variable?

前端 未结 7 2289
悲&欢浪女
悲&欢浪女 2021-01-01 18:00

I see I can write :

protected static

in my C# class (in my case, an aspx.cs). As well as :

private static

7条回答
  •  臣服心动
    2021-01-01 18:27

    private
    The type or member can only be accessed by code in the same class or struct.
    protected
    The type or member can only be accessed by code in the same class or struct, or in a derived class. Static Modifier
    Static methods are called without an instance reference.

提交回复
热议问题