13 lines
274 B
C#
13 lines
274 B
C#
|
// dnlib: See LICENSE.txt for more info
|
||
|
|
||
|
using dnlib.DotNet.Pdb.Symbols;
|
||
|
|
||
|
namespace dnlib.DotNet.Pdb.Managed {
|
||
|
sealed class DbiNamespace : SymbolNamespace {
|
||
|
public override string Name => name;
|
||
|
readonly string name;
|
||
|
|
||
|
public DbiNamespace(string ns) => name = ns;
|
||
|
}
|
||
|
}
|