I am trying to sort the methods by name that are in a class in a #region, is there a way?
#Region ABCD
public void XYZ(){}
public void ABC(){}
#EndRegion
Becomes:
#Region ABCD
public void ABC(){}
public void XYZ(){}
#EndRegion
Only those in the region (or if I have to, highlighted text) get sorted.