Scorpio.CodeDom.CodeOperator.CodeOperator C# (CSharp) Method

CodeOperator() public method

public CodeOperator ( CodeObject Right, CodeObject Left, TokenType type, string breviary, int line ) : System
Right CodeObject
Left CodeObject
type TokenType
breviary string
line int
return System
        public CodeOperator(CodeObject Right, CodeObject Left, TokenType type, string breviary, int line) : base(breviary, line)
        {
            this.Left = Left;
            this.Right = Right;
            this.Operator = type;
        }
    }
CodeOperator