对象说明

public class Person
{
    public int Age{get; set;}
    public string Name{get; set;}  
    
    List<Person> friends = new List<Person>();
    public List<Person> Friends {get{ return friends;} }

    Location home = new Location();
    public Location Home{ get {return home;}}

    public Person(){}
    public Person(string name)
    {
        Name = name;
    }
}

public class Location
{
    public string Country {get; set;}
    public string Town {get; set;}
}
View Code

相关文章: