Advertisement
Guest User

Untitled

a guest
Feb 26th, 2011
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1.     class Program
  2.     {
  3.         static void Main(string[] args)
  4.         {
  5.             Dictionary<int, Action<string>> dictionary = new Dictionary<int, Action<string>>();
  6.             dictionary.Add(0, new Action<string>("Login"));
  7.         }
  8.         public static void Login()
  9.         {
  10.             Console.WriteLine("Login!");
  11.         }
  12.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement