C# Class xFunc.Maths.Tokens.FunctionToken

Represents a function token.
Inheritance: IToken
Show file Open project: sys27/xFunc Class Usage Examples

Protected Properties

Property Type Description
m_countOfParams int

Public Methods

Method Description
Equals ( object obj ) : bool

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

FunctionToken ( Functions function ) : System

Initializes the FunctionToken class.

FunctionToken ( Functions function, int countOfParams ) : System

Initializes the FunctionToken class.

GetHashCode ( ) : int

Returns a hash code for this instance.

ToString ( ) : string

Returns a string that represents the current object.

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

FunctionToken() public method

Initializes the FunctionToken class.
public FunctionToken ( Functions function ) : System
function Functions A function.
return System

FunctionToken() public method

Initializes the FunctionToken class.
public FunctionToken ( Functions function, int countOfParams ) : System
function Functions A function.
countOfParams int The count of parameters.
return System

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

Property Details

m_countOfParams protected property

The count of parameters
protected int m_countOfParams
return int