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.