[Serializable]
public class Person
Constructors
Declaration
Declaration
public Person(string newName, Gender gender, DateTime newBirthday, string newAddress, params Person[] newFriends)
Parameters
Properties
Declaration
public Address Address { get; set; }
Property Value
Declaration
Property Value
Declaration
public DateTime Birthday { get; set; }
Property Value
Declaration
public string FirstName { get; set; }
Property Value
Declaration
public List<Person> Friends { get; set; }
Property Value
Declaration
public string FullName { get; set; }
Property Value
Declaration
public Gender Gender { get; set; }
Property Value
Declaration
public string LastName { get; set; }
Property Value
Declaration
public string MiddleName { get; set; }
Property Value
Declaration
public string Name { get; }
Property Value
Declaration
public int NumberOfFriends { get; }
Property Value
Declaration
public Person Spouse { get; set; }
Property Value
Methods
Declaration
Returns
Declaration
public override string ToString()
Returns
Overrides