首页 > Windows开发 > 详细

c#Property和Attribute区别

时间:2016-06-07 12:35:04      阅读:232      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!