예제 #1
0
파일: Test.cs 프로젝트: ooaavee/beavis
 private Task <CommandResult> OnCccc(bool result, CommandContext context)
 {
     if (result)
     {
         context.WriteSuccess("Cool");
         return(context.AskText("What you want to do?", Handler));
     }
     else
     {
         context.WriteText("Blaah");
         return(context.AskText("Why not?", Handler));
     }
 }