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 } 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 } 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.
Source: https://ru.stackoverflow.com/questions/595637/
All Articles
Visual Studio? - Denis Bubnov