I would really like to have VS2008 automatically indent the contents of a region. A sample would probably be best.
What is does now:
#region [ Fields ]
public int Count;
public int Total;
#endregion
What I'd like is:
#region [ Fields ]
public int Count;
public int Total;
#endregion
How can I get VS to do this?
EDIT: For what its worth, VS does do this in VB.NET.