C# Class RTools.Util.StringToken

Abstract base class for string tokens.
Inheritance: Token
Datei anzeigen Open project: PaulMineau/AIMA.Net

Public Methods

Method Description
GetHashCode ( ) : int

Override, see base Token

StringToken ( string s ) : System

Default constructor.

StringToken ( string s, int line ) : System

Constructor with the specified value and line number.

ToDebugString ( ) : string

Override, see base Token

ToString ( ) : string

Override, see base Token

Method Details

GetHashCode() public method

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

StringToken() public method

Default constructor.
public StringToken ( string s ) : System
s string
return System

StringToken() public method

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

ToDebugString() public method

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

ToString() public method

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