Skip to content

Instantly share code, notes, and snippets.

@yetanotherchris
Last active December 13, 2015 18:39

Revisions

  1. Chris S. renamed this gist Sep 18, 2015. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. Chris created this gist Feb 14, 2013.
    55 changes: 55 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,55 @@
    static void Main(string[] args)
    {
    string input = "";
    MyHandler handler = new MyHandler();

    CommandOptions options = new CommandOptions();
    options.Add("show", handler.Show)
    .Add("name", v => handler.Name(v))
    .Add("age", v => handler.Age(v))

    while (input != "quit" && input != "exit")
    {
    if (input == "cls" || input == "clear")
    {
    System.Console.Clear();
    }
    else
    {
    if (!string.IsNullOrEmpty(input))
    {
    if (options.Parse(input))
    {
    System.Console.WriteLine(handler.OutputMessage);
    }
    else
    {
    System.Console.WriteLine("I didn't understand that command");
    }
    }
    }

    System.Console.Write(">");
    input = System.Console.ReadLine();
    }
    }

    public class MyHandler
    {
    public string OutputMessage { get; set; }

    public void Show()
    {
    OutputMessage = "Do something with the Show command, list SQL tables for example";
    }

    public void Name(string[] args)
    {
    OutputMessage = string.Format("{0} is your name",args[0]));
    }

    public void Age(string[] args)
    {
    OutputMessage = string.Format("{0} is your age",args[0]);
    }
    }