obfuz/Plugins/dnlib/DotNet/Pdb/PdbUtils.cs

9 lines
261 B
C#
Raw Normal View History

2025-04-08 20:31:44 +08:00
// 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;
}
}