We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bda6bd commit 95a37bdCopy full SHA for 95a37bd
source/MetadataProcessor.Core/nanoDumperGenerator.cs
@@ -267,8 +267,8 @@ private void DumpTypeDefinitions(DumpAllTable dumpTable)
267
var h = new ExceptionHandler();
268
269
h.Handler = $"{((int)eh.HandlerType).ToString("x2")} " +
270
- $"{eh.TryStart.Offset.ToString("x8")}->{eh.TryEnd.Offset.ToString("x8")} " +
271
- $"{eh.HandlerStart.Offset.ToString("x8")}->{eh.HandlerEnd.Offset.ToString("x8")} ";
+ $"{eh.TryStart?.Offset.ToString("x8")}->{eh.TryEnd?.Offset.ToString("x8")} " +
+ $"{eh.HandlerStart?.Offset.ToString("x8")}->{eh.HandlerEnd?.Offset.ToString("x8")} ";
272
273
if(eh.CatchType != null)
274
{
0 commit comments