ScriptEngineEvaluate(String) Method |
Evaluates script code.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public Object Evaluate(
string code
)
Public Function Evaluate (
code As String
) As Object
public:
virtual Object^ Evaluate(
String^ code
) sealed
abstract Evaluate :
code : string -> Object
override Evaluate :
code : string -> Object
Parameters
- code String
- The script code to evaluate.
Return Value
ObjectThe result value.
Implements
IScriptEngineEvaluate(String)Remarks
In some script languages the distinction between statements and expressions is
significant but ambiguous for certain syntactic elements. This method always
interprets the specified script code as an expression.
If a debugger is attached, it will present the specified script code to the user as a
document with an automatically selected name. This document will be discarded after
execution.
For information about the types of result values that script code can return, see
Evaluate(String, Boolean, String).
See Also