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

BaseTypesEntryNode() public method

public BaseTypesEntryNode ( TypeReference tr, bool isInterface )
tr TypeReference
isInterface bool
        public BaseTypesEntryNode(TypeReference tr, bool isInterface)
        {
            if (tr == null)
                throw new ArgumentNullException("tr");
            this.tr = tr;
            this.def = tr.Resolve();
            this.isInterface = isInterface;
        }