Add extra using statement aliases

This commit is contained in:
Starbeamrainbowlabs 2016-05-09 09:55:54 +01:00
parent 82c47179a5
commit 67c85f9b40
1 changed files with 3 additions and 2 deletions

View File

@ -14,10 +14,11 @@ namespace cscz
/// </summary> /// </summary>
public Dictionary<string, string> UsingShortcuts = new Dictionary<string, string>() public Dictionary<string, string> UsingShortcuts = new Dictionary<string, string>()
{ {
{ "s", "System" },
{ "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" },
{ "s", "System.Net.Sockets" }
}; };
/// <summary> /// <summary>