| 123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Collections.Specialized;
- using System.Text;
- using System.ConsoleApp;
- using System.ConsoleApp.Commands;
- namespace Keln.Commands {
- [ConsoleCommand("qqq")]
- [ConsoleCommand("quit")]
- [ConsoleCommand("exit")]
- public class qqq_command : BaseCommand {
- public static bool execute(string line, string cmd, NameValueCollection arguments) {
- /*foreach(KeyValuePair<string, ProcessInfo> pi in Program.processes) {
- pi.Value.Stop();
- }*/
- ConsoleAdvanced.bExit = true;
- return false;
- }
- }
- }
|