C# Класс Jurassic.Compiler.DynamicILLocalVariable

Represents a local variable in CIL code.
Наследование: ILLocalVariable
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
DynamicILLocalVariable ( DynamicILGenerator generator, int index, Type type, string name ) : System

Creates a new local variable instance.

Описание методов

DynamicILLocalVariable() публичный Метод

Creates a new local variable instance.
public DynamicILLocalVariable ( DynamicILGenerator generator, int index, Type type, string name ) : System
generator DynamicILGenerator The generator that created this variable.
index int The index of the local variable within the method body.
type System.Type The type of the variable.
name string The name of the local variable. Can be null.
Результат System