Today while writing comment in a code file I got following error
XML documentation parse error: Whitespace is not allowed at this location. XML comment will be ignored.
After some searching on Google found the following link describing the reason behind the error..![]()
Actually the problem was xml comments don’t allow special characters like &, >, < etc in them.. so either don’t use them or Use & < etc.
Ha-P Coding .. ![]()

