예제 #1
0
 static string AddWords(string[] msgArgs)
 {
     if (msgArgs.Length != 3)
     {
         return("Wrong data !");
     }
     else
     {
         Tutor.AddWord(msgArgs[1], msgArgs[2]);
         return("The new word is added");
     }
 }