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. System.Console.WriteLine((dernier.Ticks - now.Ticks) * (dernier.DayOfWeek - now.DayOfWeek) >= 0);
  14. }
  15. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cs(3,14): error CS0234: The type or namespace name `Data' does not exist in the namespace `System'. Are you missing an assembly reference?
Compilation failed: 1 error(s), 0 warnings
stdout
Standard output is empty