c# - how reference member comment in Sandcastle -


code sample :

//<remarks> // <see cref="class2.dosomething(object)"  /> //</remarks> public class class1 { }  public class class2 {   //<summary>do ...<summary>   public void dosomething(object obj) { ... } } 

i need class1 "remarks" content contain "summary" of class2.dosomething.

use include tag put common documentation in separate file.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -