C# Class Jurassic.Compiler.DynamicILLocalVariable

Represents a local variable in CIL code.
Inheritance: ILLocalVariable
Afficher le fichier Open project: paulbartrum/jurassic Class Usage Examples

Méthodes publiques

Méthode Description
DynamicILLocalVariable ( DynamicILGenerator generator, int index, Type type, string name ) : System

Creates a new local variable instance.

Method Details

DynamicILLocalVariable() public méthode

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.
Résultat System