System.Reflection.Metadata.LocalScope
namespace System.Reflection.Metadata
{
public struct LocalScope
{
public MethodDefinitionHandle Method { get; }
public ImportScopeHandle ImportScope { get; }
public int StartOffset { get; }
public int Length { get; }
public int EndOffset { get; }
public LocalVariableHandleCollection GetLocalVariables();
public LocalConstantHandleCollection GetLocalConstants();
public LocalScopeHandleCollection.ChildrenEnumerator GetChildren();
}
}