在 Visual Studio 中,是否可以在源文件中创建跳转到文件特定行的超链接?我想创建一个指向特定行的链接,如下所示:
// [[#DoStuff|Clicking here will take you to the method "doStuff."]]
//
//
//
//
// #DoStuff
//clicking the hyperlink should jump to the line above.
function doStuff(){
}
有什么方法可以在评论中创建超链接以跳转到特定方法?