コード例 #1
0
 public void TrimAllFields()
 {
     FirstName  = FirstName.TrimIfNotNull();
     LastName   = LastName.TrimIfNotNull();
     ZipCode    = ZipCode.TrimIfNotNull();
     MiddleName = MiddleName.TrimIfNotNull();
     NameSuffix = NameSuffix.TrimIfNotNull();
     Address    = Address.TrimIfNotNull();
     City       = City.TrimIfNotNull();
     State      = State.TrimIfNotNull();
     Email      = Email.TrimIfNotNull();
     CellPhone  = CellPhone.TrimIfNotNull();
     HomePhone  = HomePhone.TrimIfNotNull();
     Apartment  = Apartment.TrimIfNotNull();
 }