Update dictionary definitions to C# 6 standard
This commit is contained in:
parent
9a8c0aa520
commit
741c5002c8
1 changed files with 10 additions and 10 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue