google0312 发表于 2016-8-11 16:05:17

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

match123_xbd 发表于 2023-4-3 17:37:49

{:7_112:}
页: [1]
查看完整版本: C#入门教程——自动实现属性