fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data.Objects.DataClasses;
  4. using System.Linq;
  5. using System.Web;
  6.  
  7. public class test {
  8. public static void Main
  9. {
  10. DateTime dernier = new DateTime(2012, 02, 09);
  11. DateTime now = DateTime.Now;
  12.  
  13. return (dernier.Ticks - now.Ticks) * (dernier.DayOfWeek - now.DayOfWeek) >=
  14. }
  15. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cs(8,15): error CS0547: `test.Main': property or indexer cannot have void type
prog.cs(10,1): error CS1014: A get or set accessor expected
Compilation failed: 2 error(s), 0 warnings
stdout
Standard output is empty