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