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
Post a Comment