There is a class DB . Through intellisense display of properties goes alphabetically, but I want to make it so that I myself can set it.

 class DB { public string Url { get; set; } //2 public string Category { get; set; } //1 } 
  • one
    you need to write your extension for the studio, if it happens in it - Grundy
  • I want to do so that I myself can set it - are you talking about the order of the displayed properties? - Denis Bubnov
  • yes, about the order. - Rajab
  • I correctly understood that speech about Visual Studio ? - Denis Bubnov
  • Yes, that's right .... - Rajab

1 answer 1

Sorting and filtering the Intellisense list in Visual Studio does not provide for setting your own list display order by standard means. (At some forum I came across an article where this functionality was discussed. There was even a request to add such functionality, but it did not appear).

For example, for Visual Studio there is a good toolkit, the ReSharper plugin, which makes useful code additions and helps to increase the productivity of work in Visual Studio . But there is no such possibility in it.

If you have the necessary knowledge and experience in writing plug-ins, then you can write a plug-in similar to ReSharper , which can be embedded in Visual Studio for an individual display of the Intellisense list.