Esempio n. 1
0
 private void addGSNBPhone(string sPhone)
 {
     if (PublicUtil.IsPhoneNumber(sPhone))
     {
         DtGSNBPhone.Add(sPhone);
     }
     if (PublicUtil.IsZuoJiNumber(sPhone))
     {
         DtZuoJi.Add(sPhone);
     }
 }
Esempio n. 2
0
 private void addPhone(string sPhone)
 {
     if (PublicUtil.IsPhoneNumber(sPhone))
     {
         if (sPhone.Length > 11)
         {
             sPhone = sPhone.Substring(0, 11);
         }
         DtPhone.Add(sPhone);
     }
     if (PublicUtil.IsZuoJiNumber(sPhone))
     {
         DtZuoJi.Add(sPhone);
     }
 }