I used below XML comment,
public List<string> SampleCollection
{
get;
set;
}
But it has the following warning error:
The XML comment for 'SampleCollection' has poorly formed XML - the 'End tag' code 'does not match the start tag' string '. ''
because the definition of the list has <string>. Therefore, he considered this an XML tag.
Is there any way to resolve this?
source
share