Skip to content

Commit 6a34df5

Browse files
marwiesiegfriedpammer
authored andcommitted
fix string <> int convertion error
1 parent 2048273 commit 6a34df5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ILSpy/Metadata/DebugTables/CustomDebugInformationTableTreeNode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ static CustomDebugInformationKind GetKind(MetadataReader metadata, GuidHandle h)
183183

184184
public int RID => MetadataTokens.GetRowNumber(handle);
185185

186-
public object Offset => offset == null ? "n/a" : offset;
186+
public object Offset => offset == null ? null : offset;
187187

188188
[StringFormat("X8")]
189189
public int Parent => MetadataTokens.GetToken(debugInfo.Parent);

0 commit comments

Comments
 (0)