Boo.Lang.Compiler.TypeSystem.GenericConstructedMethod.IsFullyConstructed C# (CSharp) 메소드

IsFullyConstructed() 개인적인 메소드

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