C# Class CSE.Exps.CseObject

Wrapper for values passed around the cse expression Parse methods. This allows the values to have metadata attached to them for better decision making in some cases
Inheritance: ICloneable
Mostrar archivo Open project: kcherr1/CSharp-Eval Class Usage Examples

Public Methods

Method Description
Clone ( dynamic newValue ) : CseObject

Creates a shallow copy of this object with a new value

Clone ( ) : object

Creates a shallow copy of this object

CseObject ( dynamic value ) : System

Constructor

operator ( ) : CseObject

Negates the value property

Method Details

Clone() public method

Creates a shallow copy of this object with a new value
public Clone ( dynamic newValue ) : CseObject
newValue dynamic Value to give the cloned object
return CseObject

Clone() public method

Creates a shallow copy of this object
public Clone ( ) : object
return object

CseObject() public method

Constructor
public CseObject ( dynamic value ) : System
value dynamic Object for it to hold
return System

operator() public static method

Negates the value property
public static operator ( ) : CseObject
return CseObject