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

SetMismatchedStaticBit() public method

public SetMismatchedStaticBit ( ) : void
return void
        public void SetMismatchedStaticBit()
        {
            switch (kind)
            {
                case ExpressionKind.EK_CALL:
                    if (this.asCALL().GetMemberGroup() != null)
                        this.asCALL().GetMemberGroup().SetMismatchedStaticBit();
                    break;
            }
            IsError = true;
        }