111,094
社区成员




[DataContract]
public class User: BindableBase
{
[DataMember]
public string UserName;
[DataMember]
public int Age;
}
public class User: BindableBase
{
private string username;
public string UserName
{
get { return username; }
set { SetProperty(ref username, value); }
}
private int age;
public int Age
{
get { return age; }
set { SetProperty(ref age, value); }
}
}