In Visual Studio, can I set the order in which properties are displayed when checking in the debugger?
Here is an example of a class where I would really like StartDate and EndDate to appear next to each other, although they are separated alphabetically.

Other debugger options are configured using attributes such as DebuggerDisplayAttribute, so I was hoping that another such attribute would exist for DisplayOrder.
[DebuggerDisplay("{Name}")]
public class Rule
{
public string Name;
public int MaxAge;
public DateTime StartDate;
public DateTime EndDate;
}
In an ideal world, I would like to order properties in the inspector in the order that I defined in the class (even if this requires setting the debugger order attribute for each property), so the display will look like this:
