Skip to content

Instantly share code, notes, and snippets.

@mhkoca
Last active September 30, 2019 10:58
Show Gist options
  • Save mhkoca/513eb9f1e9dc1c3a9aa1d207c939c654 to your computer and use it in GitHub Desktop.
Save mhkoca/513eb9f1e9dc1c3a9aa1d207c939c654 to your computer and use it in GitHub Desktop.
static void Main(string[] args)
{
Dictionary<string, Action> dict = new Dictionary<string, Action>();
dict.Add("foo", bar);
dict["foo"].Invoke();
Console.WriteLine("World");
Console.ReadLine();
}
static void bar()
{
Console.WriteLine("Hello");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment