Update dictionary definitions to C# 6 standard

This commit is contained in:
Starbeamrainbowlabs 2016-08-04 12:18:50 +01:00
parent 9a8c0aa520
commit 741c5002c8
1 changed files with 10 additions and 10 deletions

View File

@ -21,16 +21,16 @@ namespace cscz
/// </summary>
public Dictionary<string, string> UsingShortcuts = new Dictionary<string, string>()
{
{ "c", "System.Collections.Generic" },
{ "cc", "System.Collections.Concurrent" },
{ "r", "System.Text.RegularExpressions" },
{ "n", "System.Net" },
{ "s", "System.Net.Sockets" },
{ "x", "Microsoft.Xna.Framework" },
{ "xg", "Microsoft.Xna.Framework.Graphics" },
{ "xs", "Microsoft.Xna.Framework.Storage" },
{ "xi", "Microsoft.Xna.Framework.Input" },
{ "oo", "OpenTK.Graphics.OpenGL" },
["c"] = "System.Collections.Generic",
["cc"] = "System.Collections.Concurrent",
["r"] = "System.Text.RegularExpressions",
["n"] = "System.Net",
["s"] = "System.Net.Sockets",
["x"] = "Microsoft.Xna.Framework",
["xg"] = "Microsoft.Xna.Framework.Graphics",
["xs"] = "Microsoft.Xna.Framework.Storage",
["xi"] = "Microsoft.Xna.Framework.Input",
["oo"] = "OpenTK.Graphics.OpenGL"
};
/// <summary>