11 lines
216 B
C#
11 lines
216 B
C#
namespace Microsoft.CodeAnalysis.Debugging;
|
|
|
|
internal static class CustomDebugInfoConstants
|
|
{
|
|
internal const byte Version = 4;
|
|
|
|
internal const int GlobalHeaderSize = 4;
|
|
|
|
internal const int RecordHeaderSize = 8;
|
|
}
|