home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 March / PCWorld_2001-03_cd.bin / Software / TemaCD / C#ed / Setup.exe / FileWithErrors.cs < prev    next >
Text File  |  2000-08-23  |  196b  |  14 lines

  1.  
  2. // This program has errors and won't compile
  3.  
  4. using System;
  5.  
  6. class MyClass
  7. {
  8.     public static void Main()
  9.     {
  10.         Console.WriteLine("Unclosed string);        
  11.         int i = 0 // Missing ';'        
  12.     }
  13. }
  14.