0

How can I get the description of this property for example: (?)

    /// <summary>
    /// **This indicates whether the ToolTip is Activated.**
    /// </summary>
    private bool _visible
    {
        get { return rtbScript.ToolTip.Active; }
        set { rtbScript.ToolTip.Active = value; }
    }
Matt
  • 14,906
  • 27
  • 99
  • 149
Sylar
  • 5
  • 4
  • 1
    What do you mean with description? – Jite Feb 21 '15 at 20:45
  • 1
    Xml doc would be tricky. [Description] would be easier –  Feb 21 '15 at 20:46
  • The string located inside the .. – Sylar Feb 21 '15 at 20:48
  • What do you want to use it for? Do you want to generate documentation from your source code or do you want to use it at runtime (for example, to display it to a user)? – Pieter Witvoet Feb 21 '15 at 20:49
  • I want to display the comments to the user.. but due to @EZI's comment I now suspect that it is not possible.. :/ – Sylar Feb 21 '15 at 20:53
  • It is possible to do. However you'll need to write a MEF Extension for VS or a VSPackage. This allows you to get the info at **edit time** by either parsing the file or querying the **classifiers**. Those other answers don't mention this and they seem to be focused on runtime –  Feb 21 '15 at 21:09

0 Answers0