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>
|
/// </summary>
|
||||||
public Dictionary<string, string> UsingShortcuts = new Dictionary<string, string>()
|
public Dictionary<string, string> UsingShortcuts = new Dictionary<string, string>()
|
||||||
{
|
{
|
||||||
{ "c", "System.Collections.Generic" },
|
["c"] = "System.Collections.Generic",
|
||||||
{ "cc", "System.Collections.Concurrent" },
|
["cc"] = "System.Collections.Concurrent",
|
||||||
{ "r", "System.Text.RegularExpressions" },
|
["r"] = "System.Text.RegularExpressions",
|
||||||
{ "n", "System.Net" },
|
["n"] = "System.Net",
|
||||||
{ "s", "System.Net.Sockets" },
|
["s"] = "System.Net.Sockets",
|
||||||
{ "x", "Microsoft.Xna.Framework" },
|
["x"] = "Microsoft.Xna.Framework",
|
||||||
{ "xg", "Microsoft.Xna.Framework.Graphics" },
|
["xg"] = "Microsoft.Xna.Framework.Graphics",
|
||||||
{ "xs", "Microsoft.Xna.Framework.Storage" },
|
["xs"] = "Microsoft.Xna.Framework.Storage",
|
||||||
{ "xi", "Microsoft.Xna.Framework.Input" },
|
["xi"] = "Microsoft.Xna.Framework.Input",
|
||||||
{ "oo", "OpenTK.Graphics.OpenGL" },
|
["oo"] = "OpenTK.Graphics.OpenGL"
|
||||||
};
|
};
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Loading…
Reference in a new issue