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>
public Dictionary<string, string> UsingShortcuts = new Dictionary<string, string>()
{
{ "s", "System" },
{ "c", "System.Collections.Generic" },
{ "cc", "System.Collections.Concurrent" },
{ "r", "System.Text.RegularExpressions" }
{ "r", "System.Text.RegularExpressions" },
{ "n", "System.Net" },
{ "s", "System.Net.Sockets" }
};
/// <summary>