When defining properties I like to do just before property declaration, something like this
private IList<SomeType> _myList;
public IEnumerable<SomeType> MyList
{
get { return _myList;}
}
But if I place ///<summary>
tag on the property, I lose the benefit of declaring the backing fields like this, it is not readable any more. If I place it before backing field, comments do not show in the IDE. Is there a way to put summary tag before backing field and have it show up in IDE (VS2008)?