Прочитај на енглеском Уреди

Делите путем


Globals.ScriptEngine Property

Definition

Returns a String representing the runtime currently in use.

C#
public static string ScriptEngine { get; }

Property Value

A string representing the runtime currently in use.

Examples

The following example uses the ScriptEngine property and related properties to return a string describing the current run-time information:

VB
Function getRuntimeInfo() As String
    Dim runtime As String = ScriptEngine & " Version "
    runtime &= CStr(ScriptEngineMajorVersion) & "."
    runtime &= CStr(ScriptEngineMinorVersion) & "."
    runtime &= CStr(ScriptEngineBuildVersion)
    ' Return the current runtime information.
    Return runtime
End Function

Remarks

The ScriptEngine property returns the string "VB".

You can use ScriptEngine when your application is running as a standalone program, in a script, or in a host application.

Applies to

Производ Верзије
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also