我有一个类 testClass
public class testClass
{
public int firstInt;
public int SecondInt { get; set; }
}
在我的页面_Default 中的一个事件上,我正在创建一个对象并尝试设置属性。
protected void Button1_Click(object sender, EventArgs e)
{
testClass objtestClass = new testClass();
objtestClass.firstInt = 1;
objtestClass.SecondInt = 2;
}
两个值都正确设置。但是 firstInt 和 SecondInt 的行为不同。看图片。
为什么两者都以不同的颜色出现?