コード例 #1
0
ファイル: GenText.cs プロジェクト: sachdevs/RW-Decompile
 public static string WithoutVowelsIfLong(string s)
 {
     if (s.NullOrEmpty() || s.Length <= 5)
     {
         return(s);
     }
     return(s.Substring(0, 2) + GenText.WithoutVowels(s.Substring(2)));
 }