static 和const修饰的变量都是静态变量;
static readonly 修饰的变量是只读的 只能在定义变量的时候和静态构造方法里面给其赋值
class Weapon
{
public static readonly Weapon Instance;
static Weapon()
{
Instance= new Weapon();
}
}
static 和const修饰的变量都是静态变量;
static readonly 修饰的变量是只读的 只能在定义变量的时候和静态构造方法里面给其赋值
class Weapon
{
public static readonly Weapon Instance;
static Weapon()
{
Instance= new Weapon();
}
}