LocalBuilder
Represents a local variable within a method or constructor.
namespace System.Reflection.Emit
{
public sealed class LocalBuilder : LocalVariableInfo
{
public override bool IsPinned {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration);
}
}
public override int LocalIndex {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration);
}
}
public override Type LocalType {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_RefEmitILGeneration);
}
}
internal LocalBuilder()
{
}
}
}