我应该使用公共静态变量还是公共静态属性?

时间:2016-02-24 15:55:39

标签: c# variables properties static

如果我在C#中有一个类,我希望另一个类可以访问一个变量,这是更好的方法吗?

1:使用公共静态变量。

public static int staticInteger;

2:使用公共静态属性。

static int staticInteger;

public static int StaticInteger
{
    get
    {
        return staticInteger;
    }
    set
    {
        staticInteger = value;
    }
}

0 个答案:

没有答案