Say a class has a some methods with same name and different parameters. How do I tell VS to suggest them in a particular order?
相关问题
- How to know full paths to DLL's from .csproj f
- Importing NuGet references through a local project
- Visual Studio 2019 - error MSB8020: The build tool
- 'System.Threading.ThreadAbortException' in
- VS2017 RC - The following error occurred when tryi
相关文章
- How to show location of errors, references to memb
- How to track MongoDB requests from a console appli
- Visual Studio Hangs on Loading UI Library
- How to use Mercurial from Visual Studio 2010?
- Generics and calling overloaded method from differ
- Visual Studio 2015 JSX/ES2015 syntax highlighting
- Copy different file to output directory for releas
- Edit & Continue doesn't work
It can't be done. Simples. Overloads are ordered ascending by the number of parameters. Suspect you would indeed need to write a plug in.
You should keep to the convention of having all common parameters appear in the same order in every overload. From MSDN:
I don't think there's a way of ordering Intellisense without creating a plugin that interacts with it.