Visual Studio允许您查看基类抛出的所有异常的列表 库成员只需将鼠标光标悬停在代码窗口中的成员名称上即可。有没有办法找到自定义类成员?
感谢
答案 0 :(得分:4)
您正在查看该成员的XML文档评论的<exception>
元素。
要查看您自己的代码,只需将其写在您自己的文档注释中即可。
此功能没有任何自动功能。
代码示例:
/// <summary>
/// This is a method that does sometihng
/// </summary>
/// <param name="args"></param>
/// <exception cref="MyCustomException">This exception can be throw because who knows</exception>
static void Main(string[] args)
{
}