AsmResolver.Net.Signatures.GenericInstanceTypeSignature.GenericInstanceTypeSignature C# (CSharp) Method

GenericInstanceTypeSignature() public method

public GenericInstanceTypeSignature ( ITypeDefOrRef genericType ) : System
genericType ITypeDefOrRef
return System
        public GenericInstanceTypeSignature(ITypeDefOrRef genericType)
        {
            if (genericType == null)
                throw new ArgumentNullException("genericType");
            GenericType = genericType;
            GenericArguments = new List<TypeSignature>();
        }