![unity](https://habrastorage.org/r/w120/webt/65/b2/57/65b25795d26aa048832835.png)
Unity
- 9 ответов
- 0 вопросов
3
Вклад в тег
[ImplementPropertyChanging]
public class Person
{
public string GivenNames { get; set; }
public string FamilyName { get; set; }
public string FullName
{
get
{
return string.Format("{0} {1}", GivenNames, FamilyName);
}
}
}