码迷,mamicode.com
首页 > Windows程序 > 详细

c#Property和Attribute区别

时间:2016-06-07 12:37:06      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:

property和attribute都有属性的意思,在xml和html、xaml中的属性都是attribute。

c#中一般property是属性,而attribute是特性的意思。

例如:

 public class Student
    {
        private string name;//字段
        public string Name { get; set; }//property 属性
    }
 [DataContract]//attribute 特性
 public class Student
{
    [DataMember]//attribute 特性
     public string Name{ get; set; }
}

 

c#Property和Attribute区别

标签:

原文地址:http://www.cnblogs.com/yzw-carrie/p/5566324.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!