Created
September 26, 2012 12:13
-
-
Save jgrau/3787671 to your computer and use it in GitHub Desktop.
Example C# documentation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// This class performs an important function. | |
/// </summary> | |
public class TestClass | |
{ | |
// Single parameter. | |
/// <param name="Int1">Used to indicate status.</param> | |
public static void DoWork(int Int1) | |
{ | |
} | |
// Multiple parameters. | |
/// <param name="Int1">Used to indicate status.</param> | |
/// <param name="Float1">Used to specify context.</param> | |
public static void DoWork(int Int1, float Float1) | |
{ | |
} | |
/// text for Main | |
static void Main() | |
{ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment