Boo.Lang.Compiler.TypeSystem.Generics.GenericsServices.CheckGenericConstruction C# (CSharp) Метод

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

Checks whether a given set of arguments can be used to construct a generic type or method from a specified definition.
public CheckGenericConstruction ( IEntity definition, IType typeArguments ) : bool
definition IEntity
typeArguments IType
Результат bool
        public bool CheckGenericConstruction(IEntity definition, IType[] typeArguments)
        {
            return CheckGenericConstruction(null, definition, typeArguments, false);
        }

Same methods

GenericsServices::CheckGenericConstruction ( Node node, IEntity definition, IType typeArguments, bool reportErrors ) : bool