using System.Collections.Generic;
public class JoshIsNotClass
public JoshIsNotClass(int nn)
public static void Main()
Dictionary<string, IntWrapper> dict = new Dictionary<string,IntWrapper>();
dict.Add("Josh", new IntWrapper(1337));
foreach(KeyValuePair<string, IntWrapper> kp in dict)
foreach(KeyValuePair<string, IntWrapper> kp in dict)
Console.WriteLine("{0}: {1}", kp.Key, kp.Value.Value);