c# summary tag code example
Example: c# summary tag
// compile with: -doc:DocFileName.xml
/// text for class TestClass
public class TestClass
{
/// DoWork is a method in the TestClass class.
/// Here's how you could make a second paragraph in a description. for information about output statements.
///
///
public static void DoWork(int Int1)
{
}
/// text for Main
static void Main()
{
}
}