Esempio n. 1
0
 public static string WithoutVowelsIfLong(string s)
 {
     if (s.NullOrEmpty() || s.Length <= 5)
     {
         return(s);
     }
     return(s.Substring(0, 2) + GenText.WithoutVowels(s.Substring(2)));
 }