Exemple #1
0
		public Person(Person other)
		: base(other)
		{
		}
		public virtual void CopyFrom(Person other)
		{
			HomeAddress.CopyFrom(other.HomeAddress);
			WorkAddress = other.WorkAddress;
		}