Browse Source

AddXmlDocumentationTransform: Do not crash if there is no metadata token on the current member. (Example value__ field in enum declarations).

pull/897/head
Siegfried Pammer 8 years ago
parent
commit
ee6034b392
  1. 2
      ICSharpCode.Decompiler/CSharp/Transforms/AddXmlDocumentationTransform.cs

2
ICSharpCode.Decompiler/CSharp/Transforms/AddXmlDocumentationTransform.cs

@ -52,6 +52,8 @@ namespace ICSharpCode.Decompiler.CSharp.Transforms @@ -52,6 +52,8 @@ namespace ICSharpCode.Decompiler.CSharp.Transforms
default:
continue;
}
if (mr == null)
continue;
string doc = xmldoc.GetDocumentation(XmlDocKeyProvider.GetKey(mr));
if (doc != null) {
InsertXmlDocumentation(entity, new StringReader(doc));

Loading…
Cancel
Save