C#入门教程——自动实现属性
自动实现属性要点如下:1:不声明后备字段。
2:不能提供访问器的方法体。
namespace 自动实现属性
{
class Program
{
static void Main(string[] args)
{
C1 c = new C1();
Console.WriteLine("MyValue:{0}",c.MyValue);
c.MyValue = 20;
Console.WriteLine("MyValue:{0}",c.MyValue);
Console.ReadKey();
}
}
class C1
{
public int MyValue
{
set;
get;
}
}
}
输出结果:
MyValue: 0
MyValue: 20 {:7_112:}
页:
[1]