Method | Description | |
---|---|---|
Equals ( object other ) : bool |
Override, see base Token
|
|
GetHashCode ( ) : int |
Override, see base Token
|
|
IntToken ( int i ) : System |
Constructor with the specified value.
|
|
IntToken ( int i, int line ) : System |
Constructor with the specified value and line number.
|
|
IntToken ( long i ) : System |
Constructor with the specified value.
|
|
IntToken ( long l, int line ) : System |
Constructor for a 64 bit int
|
|
IntToken ( string s ) : System |
Constructor with the specified value.
|
|
IntToken ( string s, int line ) : System |
Constructor with the specified value and line number.
|
|
ParseHex ( string s, int lineNumber ) : |
Parse a string known to be a hex string. This is faster than Parse which doesn't assume the number is Hex. This will throw an exception if the input number isn't hex.
|
|
ToDebugString ( ) : string |
Override, see base Token
|
|
ToString ( ) : string |
Override, see base Token
|
Method | Description | |
---|---|---|
Parse ( string s ) : void |
Convert the input string to an integer, if possible
|
public IntToken ( long l, int line ) : System | ||
l | long | |
line | int | |
return | System |
public IntToken ( string s, int line ) : System | ||
s | string | |
line | int | |
return | System |
public static ParseHex ( string s, int lineNumber ) : |
||
s | string | The hex number as a string. |
lineNumber | int | The line where this token was found. |
return |