20 lines
419 B
C#
20 lines
419 B
C#
// dnlib: See LICENSE.txt for more info
|
|
|
|
namespace dnlib.DotNet.Pdb {
|
|
/// <summary>
|
|
/// A PDB method
|
|
/// </summary>
|
|
public sealed class PdbMethod {
|
|
/// <summary>
|
|
/// Gets/sets the root scope. It contains all scopes of the method, using namespaces, variables and constants
|
|
/// </summary>
|
|
public PdbScope Scope { get; set; }
|
|
|
|
/// <summary>
|
|
/// Constructor
|
|
/// </summary>
|
|
public PdbMethod() {
|
|
}
|
|
}
|
|
}
|