Boo.Lang.Compiler.TypeSystem.GenericConstructedMethod.IsFullyConstructed C# (CSharp) Méthode

IsFullyConstructed() private méthode

private IsFullyConstructed ( ) : bool
Résultat bool
        private bool IsFullyConstructed()
        {
            foreach (IType arg in GenericArguments)
            {
                if (GenericsServices.IsOpenGenericType(arg))
                {
                    return false;
                }
            }
            return true;
        }