Previous Topic Next topic Print topic


Comments - in COBOL and C#

Comments in Managed COBOL

      * (in column 7) rest of line is commented (COBOL fixed format)
         *> rest of line is commented 
         *> may follow COBOL statements 
         *>> <summary>XML comments</summary>

Comments in C#

// Rest of line
/* Multiple
   lines  */
/// <summary>XML comments on single line</summary>
/** <summary>XML comments on multiple lines</summary> */
Previous Topic Next topic Print topic