From 67c85f9b40f9a4486839e34e981dc53b9cd028eb Mon Sep 17 00:00:00 2001 From: sbrl Date: Mon, 9 May 2016 09:55:54 +0100 Subject: [PATCH] Add extra using statement aliases --- cscz/ClassGenerator.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cscz/ClassGenerator.cs b/cscz/ClassGenerator.cs index a0be79c..9aa566c 100644 --- a/cscz/ClassGenerator.cs +++ b/cscz/ClassGenerator.cs @@ -14,10 +14,11 @@ namespace cscz /// public Dictionary UsingShortcuts = new Dictionary() { - { "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" } }; ///