Microsoft.CSharp.RuntimeBinder.Semantics.EXPR.HasObject C# (CSharp) Method

HasObject() public method

public HasObject ( ) : bool
return bool
        public bool HasObject()
        {
            switch (kind)
            {
                case ExpressionKind.EK_FIELD:
                case ExpressionKind.EK_PROP:
                case ExpressionKind.EK_CALL:
                case ExpressionKind.EK_EVENT:
                case ExpressionKind.EK_MEMGRP:
                case ExpressionKind.EK_FUNCPTR:
                    return true;
            }
            return false;
        }