C# 클래스 Jurassic.Compiler.DynamicILLocalVariable

Represents a local variable in CIL code.
상속: ILLocalVariable
파일 보기 프로젝트 열기: paulbartrum/jurassic 1 사용 예제들

공개 메소드들

메소드 설명
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