If i have the following function:
void ReadData(Action<DataContext> action) {}
how can i reference it in seealso construct?
<seealso cref="ReadData(Action<DataContext>)"/>
complains "The character '<' cannot be used in an attribute value". Changing '<' and '>' to '{' and '}' works but makes it open generic parameter.
<seealso cref="ReadData(Action{DataContext})"/>
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