C# Class Jurassic.Compiler.ReflectionEmitILLocalVariable

Represents a local variable in CIL code.
Inheritance: ILLocalVariable
Show file Open project: paulbartrum/jurassic

Public Methods

Method Description
ReflectionEmitILLocalVariable ( System local, string name ) : System

Creates a new local variable instance.

Method Details

ReflectionEmitILLocalVariable() public method

Creates a new local variable instance.
public ReflectionEmitILLocalVariable ( System local, string name ) : System
local System The underlying local variable.
name string The name of the local variable. Can be null.
return System