c#Property和Attribute区别

Posted IsCarrie

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c#Property和Attribute区别相关的知识,希望对你有一定的参考价值。

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区别的主要内容,如果未能解决你的问题,请参考以下文章

DOM 中 Property 和 Attribute 的区别

attribute和property在英语里有啥区别

Property、attributey、field有啥区别?

Attribute和Property的区别

javascript中attribute和property的区别详解

C#中的Attribute Property区别