Can the following be done with the current Regionerate, where the private fields would be grouped together with their accessors?
#region [rgn] Properties (1)
private int _myField;
public int MyField
{
get { return _myField; }
set { _myField = value; }
}
#endregion
Thanks
