I have some C# codes using doxygen comments for some equations. VS2013 should me a warning message
warning CS1570: XML comment on 'myclass' has badly formed XML --
'A name was started with an invalid character.'
My comments are as follows and "<" caused this warning messages.
/// \f[
/// T_{max}<30
/// \f]
I really have to get rid of this warning messages. The best option is not to change the compile options to ignore this warning.
How should I fix it? Thanks for any suggestions.