Creating Properties, Summary, and Custom Colors for Methods and Types

6

Is there any way or attribute that places it on a Class, Method, Structure, or anything else that changes its color? Example of function CType :

Noticethatitiscolored,anditsargumentsinsteadofCType(Expression,TypeName)AsTypegetsCType(<expression>,<typename>)As<result>

I'vecreatedamethodcalledGetTypeDynamic,andwouldliketosetamediumcolorbluish,orcategorizeitasaKeyword.HowitstaysinVisualStudio2015:

I have already created your XML documentation , so do not even mention using '''<summary> !

And I would like to leave it like this: ( Simulated image, not real )

I've tried using the Visual Studio SDK , but I can not use it or install it on my PC

    
asked by anonymous 07.05.2015 / 22:14

1 answer

1

There is nothing that can do this. Nor do any of the plugins I know (some paid) do just that.

In order to choose the color of each method individually, the only way, is to create a plugin for this, as you started doing.

You would need to keep a list of members, and a UI to choose the color of each.

    
19.06.2015 / 14:04