attribute vs property

目前在中国都叫“属性"。

用c#来区别两者:

class ABC

{

  int a;  // attribute

  public int A // property

  {

    get

    {

      a=1;

    }

  }

}

posted @ 2010-09-19 22:35  imba  阅读(223)  评论(0编辑  收藏  举报