9 lines
261 B
C#
9 lines
261 B
C#
|
// dnlib: See LICENSE.txt for more info
|
||
|
|
||
|
namespace dnlib.DotNet.Pdb {
|
||
|
static class PdbUtils {
|
||
|
public static bool IsEndInclusive(PdbFileKind pdbFileKind, Compiler compiler) =>
|
||
|
pdbFileKind == PdbFileKind.WindowsPDB && compiler == Compiler.VisualBasic;
|
||
|
}
|
||
|
}
|