示例#1
0
 // Token: 0x0600001F RID: 31 RVA: 0x000028EE File Offset: 0x00000AEE
 public static void ShowConsole()
 {
     ConsoleUtils.SetForegroundWindow(ConsoleUtils.GetConsoleWindow());
 }
示例#2
0
 public void SendMessage()
 {
     ApiNotification.SendNotification(this.selectedUser.id, ApiNotification.NotificationType.All, ConsoleUtils.AskInput("Enter message: "), null, delegate(ApiNotification notification)
     {
         Console.WriteLine("Message sent!");
     }, delegate(string error)
     {
         Console.WriteLine("Error sending message");
     });
 }