[]
Gets or sets the type of the operator.
This property stores the OperatorKind associated with this OperatorNode.
public OperatorKind Kind { get; set; }
Public Property Kind As OperatorKind
OperatorNode node = new OperatorNode(OperatorKind.Addition);
node.Kind = OperatorKind.Subtraction;
OperatorKind kind = node.Kind;