Originally posted by janis
Ok, how to do this in C#?
regards
easy .just type description of your namespace or class or void between <summary> and </summary>

VB Code:
  1. namespace NameFormats
  2. {
  3. ///<summary>
  4. ///this name space contains one void that prints first , middle ,
  5. ///last names in differentformats
  6. ///</summary>
  7.  
  8.    class PrintNames
  9.     {
  10.     ///<summary>
  11.     ///this void takes first , middle , last names
  12.                ///inputfrom the user and
  13.               ///print them in variant orders
  14.              ///</summary>
  15. .
  16. .
  17. .
  18.             } //end void
  19.               }// end class
  20.                     }