コード例 #1
0
ファイル: IrcBotService.cs プロジェクト: krishemenway/IrcBot
 public void PrintHelpSyntaxForCommand(IrcEventArgs ircEventArgs, IBotCommand command)
 {
     foreach (var helpsyntax in command.GetHelpSyntax(ircEventArgs))
     {
         SendMessage(helpsyntax, ircEventArgs.Data.Nick);
     }
 }