Update:
ILSPY, DotPeek and JustDecompile automatically support what I am looking.
I just want to convert my C# XML Comments into Comments.
Input
<member name="P:...">
<summary>.......</summary>
<returns>
......
</returns>
</member>
Output,
/// <summary>
/// ...
/// </summary>
/// <returns>...</returns>
Without more context for what your ultimately trying to get out of it, this should convert Xml into comments. Nothing real tricky going on here…
You’ll probably need to do more to get it exactly how you want.