C# Class RTools.Util.CharToken

Token type for characters, meaning non-word characters.
Inheritance: Token
显示文件 Open project: PaulMineau/AIMA.Net Class Usage Examples

Public Methods

Method Description
CharToken ( char c ) : System

Constructor with the specified value.

CharToken ( char c, int line ) : System

Constructor with the specified value.

CharToken ( string s, int line ) : System

Constructor with the specified value and line number.

Equals ( object other ) : bool

Override, see base Token

GetHashCode ( ) : int

Override, see base Token

ToDebugString ( ) : string

Override, see base Token

ToString ( ) : string

Override, see base Token

Method Details

CharToken() public method

Constructor with the specified value.
public CharToken ( char c ) : System
c char
return System

CharToken() public method

Constructor with the specified value.
public CharToken ( char c, int line ) : System
c char
line int
return System

CharToken() public method

Constructor with the specified value and line number.
public CharToken ( string s, int line ) : System
s string
line int
return System

Equals() public method

Override, see base Token
public Equals ( object other ) : bool
other object
return bool

GetHashCode() public method

Override, see base Token
public GetHashCode ( ) : int
return int

ToDebugString() public method

Override, see base Token
public ToDebugString ( ) : string
return string

ToString() public method

Override, see base Token
public ToString ( ) : string
return string