0

我需要在评论中链接一个文件,以便其他人可以单击它并且资源管理器打开文件夹或文件打开我需要这样的东西:

/// <summary>
/// Does something see file://$(SolutionDir)/SomeFolder/somefile.txt"
/// </summary>
public void MyMethod()
{}
4

1 回答 1

0

You can try the following comment to do it.

/// <summary>
    /// This is a math function I found <see href="file:///test">HERE</see>
    /// </summary>
    public void MyMethod()
    { }

The rule is file:/// + your relative file path.

This is my tested result:

enter image description here

于 2020-05-29T01:52:33.823 回答