obfuz/Plugins/dnlib/DotNet/Pdb/Portable/SequencePointConstants.cs

9 lines
204 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.Portable {
static class SequencePointConstants {
public const int HIDDEN_LINE = 0xFEEFEE;
public const int HIDDEN_COLUMN = 0;
}
}