C# Class xFunc.Maths.Tokens.UserFunctionToken

Represents a user-function token.
Inheritance: FunctionToken
Mostra file Open project: sys27/xFunc Class Usage Examples

Public Methods

Method Description
Equals ( object obj ) : bool

Determines whether the specified object is equal to the current object.

GetHashCode ( ) : int

Returns a hash code for this instance.

ToString ( ) : string

Returns a string that represents the current object.

UserFunctionToken ( string functionName ) : System

Initializes the UserFunctionToken class.

UserFunctionToken ( string functionName, int countOfParams ) : System

Initializes the UserFunctionToken class.

Method Details

Equals() public method

Determines whether the specified object is equal to the current object.
public Equals ( object obj ) : bool
obj object The object to compare with the current object.
return bool

GetHashCode() public method

Returns a hash code for this instance.
public GetHashCode ( ) : int
return int

ToString() public method

Returns a string that represents the current object.
public ToString ( ) : string
return string

UserFunctionToken() public method

Initializes the UserFunctionToken class.
public UserFunctionToken ( string functionName ) : System
functionName string A name of function.
return System

UserFunctionToken() public method

Initializes the UserFunctionToken class.
public UserFunctionToken ( string functionName, int countOfParams ) : System
functionName string A name of function.
countOfParams int A count of parameters.
return System