/// <summary>
///
/// </summary>
/// <remarks
///
/// </remarks>
How to add xaml code in above comment, avoiding code parser to create links that do not exist (CTRL + Click messages)?
You have two options:
Standard XML escaping
/// <TextBlock Text="Hello World!"/>
CDATA sections
/// <![CDATA[<TextBlock Text="Hello World!"/>]]>
With the first option, Visual Studio Intellisense will properly show the unescaped XML sequence.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With