Boo.Lang.Compiler.TypeSystem.ExternalGenericParameter.ExternalGenericParameter C# (CSharp) Method

ExternalGenericParameter() public method

public ExternalGenericParameter ( TypeSystemServices tss, Type type ) : System
tss TypeSystemServices
type System.Type
return System
        public ExternalGenericParameter(TypeSystemServices tss, Type type)
            : base(tss, type)
        {
            if (type.DeclaringMethod != null)
            {
                _declaringMethod = (IMethod)tss.Map(type.DeclaringMethod);
            }
        }