RuntimeOps.CreateRuntimeVariables Method

Definition

Creates an interface that can be used to modify closed over variables at runtime.

Overloads

CreateRuntimeVariables()

This API supports the product infrastructure and is not intended to be used directly from your code.

Obsolete.

Creates an interface that can be used to modify closed over variables at runtime.

CreateRuntimeVariables(Object[], Int64[])

This API supports the product infrastructure and is not intended to be used directly from your code.

Obsolete.

Creates an interface that can be used to modify closed over variables at runtime.

CreateRuntimeVariables()

Caution

do not use this method

Creates an interface that can be used to modify closed over variables at runtime.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 static System::Runtime::CompilerServices::IRuntimeVariables ^ CreateRuntimeVariables();
[System.Obsolete("do not use this method", true)]
public static System.Runtime.CompilerServices.IRuntimeVariables CreateRuntimeVariables ();
[<System.Obsolete("do not use this method", true)>]
static member CreateRuntimeVariables : unit -> System.Runtime.CompilerServices.IRuntimeVariables
Public Shared Function CreateRuntimeVariables () As IRuntimeVariables

Returns

An interface to access variables.

Attributes

Applies to

CreateRuntimeVariables(Object[], Int64[])

Caution

do not use this method

Creates an interface that can be used to modify closed over variables at runtime.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 static System::Runtime::CompilerServices::IRuntimeVariables ^ CreateRuntimeVariables(cli::array <System::Object ^> ^ data, cli::array <long> ^ indexes);
[System.Obsolete("do not use this method", true)]
public static System.Runtime.CompilerServices.IRuntimeVariables CreateRuntimeVariables (object[] data, long[] indexes);
[<System.Obsolete("do not use this method", true)>]
static member CreateRuntimeVariables : obj[] * int64[] -> System.Runtime.CompilerServices.IRuntimeVariables
Public Shared Function CreateRuntimeVariables (data As Object(), indexes As Long()) As IRuntimeVariables

Parameters

data
Object[]

The closure array.

indexes
Int64[]

An array of indices into the closure array where variables are found.

Returns

An interface to access variables.

Attributes

Applies to