【发布时间】:2018-03-21 23:54:41
【问题描述】:
当我编写代码时,我经常使用如下注释符号。
对于函数/方法/类,有时甚至是公共变量。
/// <summary>
/// Constructor of the process runner class.
/// </summary>
/// <param name="Name">The exe name of the application ea notead.exe</param>
/// <param name="Processrunner">A Process instance to start</param>
Public ProcesRunner(.....bla bla bla..
当类和程序都在同一个项目中时,这很有效。
但是,当我创建一个 .dll 项目时,当我在新项目中使用此类 dll 时,这些 cmets 似乎会丢失。有什么我应该添加到这些项目中(可能在 lib 文件夹中?)以恢复 cmets 吗?
这样我就可以在这些 dll 上使用智能感知了。
【问题讨论】:
标签: c# visual-studio comments intellisense