/ Published in: C#
URL: http://msdn2.microsoft.com/en-us/library/9w4cf933(VS.80).aspx
Expand |
Embed | Plain Text
// compile with: /doc:DocFileName.xml /// text for class TestClass public class TestClass { /// <summary> /// The GetZero method. /// </summary> /// <example> This sample shows how to call the GetZero method. /// <code> /// class TestClass /// { /// static int Main() /// { /// return GetZero(); /// } /// } /// </code> /// </example> public static int GetZero() { return 0; } /// text for Main static void Main() { } }
You need to login to post a comment.
