Skip to content

Instantly share code, notes, and snippets.

View philjones88's full-sized avatar

Phil Jones philjones88

View GitHub Profile
@timgaunt
timgaunt / gist:2725813
Created May 18, 2012 15:17
Quick menu system for console applications
namespace TheSiteDoctor.Example
{
using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
private static readonly IEnumerable<Tuple<string, string, Action>> menu = new List<Tuple<string, string, Action>>
{