// compile with: /doc:DocFileName.xml
/// text for class TestClass
publicclass TestClass
{
/// <summary>DoWork is a method in the TestClass class.
/// The <paramref name="Int1"/> parameter takes a number.
/// </summary>
publicstaticvoid DoWork(int Int1)
{
}
/// text for Main
staticvoid Main()
{
}
}