コード例 #1
0
        static void Main(string[] args)
        {
            English e          = new English();
            int     numOfWords = e.words("I am in QA");

            Console.WriteLine(numOfWords);
            int occurrences = e.find("I am, going, am To london", "am");

            Console.WriteLine(occurrences);
            e.verticalSentence("I am going to QA");
            e.reverseVerticalSentence("I am going to QA");
            Console.Read();
        }
コード例 #2
0
ファイル: Pronoun.cs プロジェクト: Dimaematveev/English
 public string GetNameLower()
 {
     return(English.ToLower());
 }