In C# or Vb.Net, using the Visual Studio 2013 SDK, how I could add an additional element on Intellisense when the info of a member is shown?.
My intention is not to add a completion/suggestion element, I would like to add custom additional info below the info that is shown for a member that can throw an exception like a method, function or property (getter/setter), not a keyword.
I read a little bit the members of Microsoft.VisualStudio.Language.Intellisense namespace but I didn't take any clear idea about it.
My goal, with the help I could get here, is to find the answer to develop a simple extension that will add (documented)Exception information for members, something like this:
I wonder to bring back this useful feature in Visual Studio for C#, and add it also for VB.Net, then if successful I'll share it for free with all yours like I did in the past with this useful extension:
Just I comment that because any help could be rewarded for all of us in that way!.
Additionally to my question, and only Additionally, if someone could start guiding me about how to figure out the way to retrieve the Xml documentation of the members ( <exception cref="Exception name">
) to do this, or maybe a simple way, I would be very grateful.
EDIT:
About the Xml documentation, I get the idea to use the Visual Studio object browser to inspect the exceptions of the member that will be listed by Intellisense instead of messing with Reflection? to get exception info. That could be a better and viable way to do it once I can figure out how to automate the object browser from SDK, but I'm just commenting this, maybe that will be a new question once this question could be solved, because firstly I need to solve this step, I hope so.