Development Class C#

// Math.cs
   public class Math
   {
      ///
      ///   The Add method allows us to add two integers
      ///

      ///Result of the addition (int)
      ///First number to add
      ///Second number to add
      public int Add(int x, int y)
      {
         return x + y;
      }
   }
//csc /t:library /doc:Math.xml Math.cs