ScriptEngineExecute(String) Method |
Executes script code.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public void Execute(
string code
)
Public Sub Execute (
code As String
)
public:
virtual void Execute(
String^ code
) sealed
abstract Execute :
code : string -> unit
override Execute :
code : string -> unit
Parameters
- code String
- The script code to execute.
Implements
IScriptEngineExecute(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 a statement.
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 not be discarded
after execution.
See Also