/// This small math class will teach us XML documentation. public class MyMath { /// String field containing the User's name. public string UserName; /// This method adds two numbers and returns the result. /// The first number to be added. /// The second number to be added. /// An integer that is the result of the addition. public int AddTwoNumbers(int a, int b) { return a+b; } }