StringFormatEx.Tests.Person.Person C# (CSharp) Method

Person() public method

public Person ( string newName, System newBirthday, string newAddress ) : System
newName string
newBirthday System
newAddress string
return System
        public Person(string newName, System.DateTime newBirthday, string newAddress, params Person[] newFriends)
        {
            this.FullName = newName;
            this.mBirthday = newBirthday;
            if (!string.IsNullOrEmpty(newAddress))
                this.mAddress = Address.Parse(newAddress);
            this.mFriends = newFriends;
        }

Same methods

Person::Person ( ) : System