fork download
  1. using System;
  2.  
  3. namespace TEST5
  4. {
  5. class MainClass
  6. {
  7. public static void Main (string[] args)
  8. {
  9. System.IO.StreamWriter s = new System.IO.StreamWriter("C:\\aaaaa.txt");
  10. System.IO.TextWriter t = System.IO.TextWriter.Synchronized(s);
  11. s.NewLine = "\n";
  12. // MS Implementation:1
  13. System.Console.WriteLine(t.NewLine.Length);
  14.  
  15. }
  16. }
  17. }
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty