ICSharpCode.ILSpy.TreeNodes.TypeTreeNode.TypeTreeNode C# (CSharp) Method

TypeTreeNode() public method

public TypeTreeNode ( Mono.Cecil.TypeDefinition type, AssemblyTreeNode parentAssemblyNode )
type Mono.Cecil.TypeDefinition
parentAssemblyNode AssemblyTreeNode
        public TypeTreeNode(TypeDefinition type, AssemblyTreeNode parentAssemblyNode)
        {
            if (parentAssemblyNode == null)
                throw new ArgumentNullException("parentAssemblyNode");
            if (type == null)
                throw new ArgumentNullException("type");
            this.type = type;
            this.parentAssemblyNode = parentAssemblyNode;
        }