c# - How to place links in comments to other project files in VS2015 -


when have class, great if place links in comments above it. examples: link related unit tests, link related integration tests, link corresponding dto/domain class, etc.

this way ease development process because files relate each other browsable.

// unit test here ..\myproject.unittests\mynicefeaturetests.cs public class mynicefeatures {  } 

in above code i'd make file link clickable, , on click i'd visual studio navigate file.

maybe helps- put in comments

 ///<see cref = "connecttoapi" /> 

than can navigate specific method (in example -connecttoapi)

or ctr+click-able object in code using "file:" prefix in comment go specific location

 //unit tests here file://d:/projects/tests/runfirsttest.cs 

Comments

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -