Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsUnknown C# (CSharp) 메소드

IsUnknown() 공개 정적인 메소드

public static IsUnknown ( Expression node ) : bool
node Boo.Lang.Compiler.Ast.Expression
리턴 bool
        public static bool IsUnknown(Expression node)
        {
            var type = node.ExpressionType;
            return null != type && IsUnknown(type);
        }

Same methods

TypeSystemServices::IsUnknown ( IType type ) : bool
TypeSystemServices