C# Class Jurassic.Compiler.DynamicILLocalVariable

Represents a local variable in CIL code.
Inheritance: ILLocalVariable
显示文件 Open project: paulbartrum/jurassic Class Usage Examples

Public Methods

Method Description
DynamicILLocalVariable ( DynamicILGenerator generator, int index, Type type, string name ) : System

Creates a new local variable instance.

Method Details

DynamicILLocalVariable() public method

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.
return System