In VS 2008 simply use the standard XML commenting syntax. I assume (but have no way of checking) that it's the same in VS 2005?
''' <summary>
''' Overall description
''' </summary>
public enum Foo
{
''' <summary>
''' Specific value description
''' </summary>
First,
''' <summary>
''' etc.
''' </summary>
Second
}
jball
2010-09-01 19:38:03