Boo.Lang.Compiler.TypeSystem.GenericConstructedType.GenericConstructedType C# (CSharp) Метод

GenericConstructedType() публичный Метод

public GenericConstructedType ( TypeSystemServices tss, IType definition, IType arguments ) : System
tss TypeSystemServices
definition IType
arguments IType
Результат System
        public GenericConstructedType(TypeSystemServices tss, IType definition, IType[] arguments)
        {
            _tss = tss;
            _definition = definition;
            _arguments = arguments;
            _genericMapping = new GenericMapping(tss, this, arguments);
            _fullyConstructed = IsFullyConstructed();
        }