Unosquare
    Show / Hide Table of Contents

    Class Operator

    Represents an operator with precedence.

    Inheritance
    Object
    Operator
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: Swan.Parsers
    Syntax
    public class Operator

    Properties

    Name

    Gets or sets the name.

    Declaration
    public string Name { get; set; }
    Property Value
    Type Description
    String

    The name.

    Precedence

    Gets or sets the precedence.

    Declaration
    public int Precedence { get; set; }
    Property Value
    Type Description
    Int32

    The precedence.

    RightAssociative

    Gets or sets a value indicating whether [right associative].

    Declaration
    public bool RightAssociative { get; set; }
    Property Value
    Type Description
    Boolean

    true if [right associative]; otherwise, false.

    Comments

    Back to top Copyright © 2017-2019 Unosquare