property和attribute都有屬性的意思,在xml和html、xaml中的屬性都是attribute。html
c#中通常property是屬性,而attribute是特性的意思。c#
例如:spa
public class Student { private string name;//字段 public string Name { get; set; }//property 屬性 }
[DataContract]//attribute 特性 public class Student { [DataMember]//attribute 特性 public string Name{ get; set; } }