コード例 #1
0
 public DerivedTypesEntryNode(TypeDefinition type, AssemblyDefinition[] assemblies)
 {
     this.type        = type;
     this.assemblies  = assemblies;
     this.LazyLoading = true;
     threading        = new ThreadingSupport();
 }
コード例 #2
0
 public DerivedTypesTreeNode(AssemblyList list, TypeDefinition type)
 {
     this.list        = list;
     this.type        = type;
     this.LazyLoading = true;
     this.threading   = new ThreadingSupport();
 }
コード例 #3
0
		public DerivedTypesEntryNode(TypeDef type, ModuleDef[] modules)
		{
			this.type = type;
			this.modules = modules;
			this.LazyLoading = true;
			threading = new ThreadingSupport();
		}
コード例 #4
0
ファイル: DerivedTypesTreeNode.cs プロジェクト: arturek/ILSpy
		public DerivedTypesTreeNode(AssemblyList list, TypeDefinition type)
		{
			this.list = list;
			this.type = type;
			this.LazyLoading = true;
			this.threading = new ThreadingSupport();
		}
コード例 #5
0
 public DerivedTypesEntryNode(TypeDef type, ModuleDef[] modules)
 {
     this.type        = type;
     this.modules     = modules;
     this.LazyLoading = true;
     threading        = new ThreadingSupport();
 }
コード例 #6
0
		public DerivedTypesEntryNode(TypeDefinition type, AssemblyDefinition[] assemblies)
		{
			this.type = type;
			this.assemblies = assemblies;
			this.LazyLoading = true;
			threading = new ThreadingSupport();
		}
コード例 #7
0
ファイル: DerivedTypesTreeNode.cs プロジェクト: xornand/dnSpy
 public DerivedTypesTreeNode(DnSpyFileList list, TypeDef type)
 {
     this.list        = list;
     this.type        = type;
     this.LazyLoading = true;
     this.threading   = new ThreadingSupport();
 }
コード例 #8
0
 public DerivedTypesEntryNode(TypeDefinition def, AssemblyDefinition[] assemblies)
 {
     this.def = def;
     this.assemblies = assemblies;
     threading = new ThreadingSupport();
 }
コード例 #9
0
		public DerivedTypesTreeNode(DnSpyFileList list, TypeDef type) {
			this.list = list;
			this.type = type;
			this.LazyLoading = true;
			this.threading = new ThreadingSupport();
		}