C # in a Nutshell, Second Edition

LocalBuilder

System.Reflection.Emit (mscorlib.dll) sealed class

This class represents a dynamically created local variable. Local variables are created for methods and constructors through the ILGenerator object, using the ILGenerator.DeclareLocal( ) .

public sealed class LocalBuilder { // Public Instance Properties public Type LocalType {get; } // Public Instance Methods public void SetLocalSymInfo (string name ); public void SetLocalSymInfo (string name , int startOffset , int endOffset ); }

Returned By

ILGenerator.DeclareLocal( )

Passed To

ILGenerator.{Emit( ) , EmitWriteLine( )}

Категории