使用别名指令
你可以使用 using
为命名空间或类型设置别名。更多细节可以在这里找到。
句法:
using <identifier> = <namespace-or-type-name>;
例:
using NewType = Dictionary<string, Dictionary<string,int>>;
NewType multiDictionary = new NewType();
//Use instances as you are using the original one
multiDictionary.Add("test", new Dictionary<string,int>());