Browse Source

fix string <> int convertion error

release/7.1
Marcel Wiessler 4 years ago committed by Siegfried Pammer
parent
commit
6a34df5cd0
  1. 2
      ILSpy/Metadata/DebugTables/CustomDebugInformationTableTreeNode.cs

2
ILSpy/Metadata/DebugTables/CustomDebugInformationTableTreeNode.cs

@ -183,7 +183,7 @@ namespace ICSharpCode.ILSpy.Metadata @@ -183,7 +183,7 @@ namespace ICSharpCode.ILSpy.Metadata
public int RID => MetadataTokens.GetRowNumber(handle);
public object Offset => offset == null ? "n/a" : offset;
public object Offset => offset == null ? null : offset;
[StringFormat("X8")]
public int Parent => MetadataTokens.GetToken(debugInfo.Parent);

Loading…
Cancel
Save