AngryHacker
AngryHacker

Reputation: 61646

Resharper plugin to sort the methods alphabetically?

Does something like that exist?

Upvotes: 4

Views: 4089

Answers (4)

silkfire
silkfire

Reputation: 26033

There's a free plugin called Menees VS Tools 2022 (supports Visual Studio 2022) that allows you to sort the members of a type alphabetically:

https://marketplace.visualstudio.com/items?itemName=BillMenees.MeneesVSTools2022&ssr=false#overview

enter image description here

Upvotes: 1

mattanja
mattanja

Reputation: 1452

To clean up an interface by sorting alphabetically you can also create a class diagram with the interface, select all methods, cut and paste into the same class - and you're done.

Upvotes: 1

Mathieu Chateau
Mathieu Chateau

Reputation: 241

You can customize settings in resharper as explained here: Resharper Clean-up Code - how to affect sorting of methods?

worked for me

Upvotes: 2

Scott Dorman
Scott Dorman

Reputation: 42526

I don't think Resharper has it, but MZ-Tools does.

Upvotes: 2

Related Questions