示例#1
0
 public AssemblySet(string assemblyPath)
 {
     this.Types_Model = TypeHelper.GetTypesOfClass(assemblyPath, new string[] { }, new string[] { });
     this.Types_Enum  = TypeHelper.GetTypesOfEnum(assemblyPath, new string[] { }, new string[] { });
 }
示例#2
0
 public AssemblySet(string assemblyPath, IList <string> whiteNamespaces, IList <string> blackNamespaces)
 {
     this.Types_Model = TypeHelper.GetTypesOfClass(assemblyPath, whiteNamespaces, blackNamespaces);
     this.Types_Enum  = TypeHelper.GetTypesOfEnum(assemblyPath, whiteNamespaces, blackNamespaces);
 }