Hi!
I'm really anal and would like to order my class properties alphabetically/by type.
Is this possible using a pre-existing feature in VS, or a macro that can do this?
Eg:
public string foo {get; set;}
public string bar {get; set;}
public int fong {get; set;}
public string loo {get; set;}
to (if you want to order alphabetically)
public string bar {get; set;}
public int fong {get; set;}
public string foo {get; set;}
public string loo {get; set;}
or (if you want to order by type, and then alphabeticall)
public string bar {get; set;}
public string foo {get; set;}
public string loo {get; set;}
public int fong {get; set;}
Many thanks!