#Develop Update
The #Develop IDE just got a whole lot better, they fixed the generic type inferencing.
? dic = new Dictionary<string, List<KeyValuePair<string,int >>>();
Turns to:
Dictionary <string, List<KeyValuePair<string, int >>> dic =
new Dictionary<string, List<KeyValuePair<string,int >>>();
Comments
Comment preview