C# 클래스 BitOrchestra.Operator

Gives information about a binary operator.
파일 보기 프로젝트 열기: dzamkov/Bit-Orchestra 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
Map Operator>.Dictionary
MaxOperatorLength int
Name string
Operation BinaryOperation
Precedence int

공개 메소드들

메소드 설명
Add ( Operator Operator ) : void

Adds an operator to the available set of operators.

Operator ( string Name, int Precedence, BinaryOperation Operation ) : System

비공개 메소드들

메소드 설명
Operator ( ) : System

메소드 상세

Add() 공개 정적인 메소드

Adds an operator to the available set of operators.
public static Add ( Operator Operator ) : void
Operator Operator
리턴 void

Operator() 공개 메소드

public Operator ( string Name, int Precedence, BinaryOperation Operation ) : System
Name string
Precedence int
Operation BinaryOperation
리턴 System

프로퍼티 상세

Map 공개적으로 정적으로 프로퍼티

A mapping of names to binary operators.
public static Dictionary Map
리턴 Operator>.Dictionary

MaxOperatorLength 공개적으로 정적으로 프로퍼티

The maximum string length of an operator.
public static int MaxOperatorLength
리턴 int

Name 공개적으로 프로퍼티

The name of the operator.
public string Name
리턴 string

Operation 공개적으로 프로퍼티

The operation for the operator.
public BinaryOperation Operation
리턴 BinaryOperation

Precedence 공개적으로 프로퍼티

The precedence of the operator.
public int Precedence
리턴 int