如果我在C#中有一个类,我希望另一个类可以访问一个变量,这是更好的方法吗?
1:使用公共静态变量。
public static int staticInteger;
2:使用公共静态属性。
static int staticInteger;
public static int StaticInteger
{
get
{
return staticInteger;
}
set
{
staticInteger = value;
}
}