fork download
  1. using System;
  2. using System.Threading;
  3. using System.Globalization;
  4.  
  5. public class Program {
  6. public static void Main() {
  7. Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo("pt-BR");
  8. Console.WriteLine(new NullReferenceException().Message);
  9. }
  10. }
  11.  
  12. //https://pt.stackoverflow.com/q/78613/101
Success #stdin #stdout 0.02s 16540KB
stdin
Standard input is empty
stdout
Object reference not set to an instance of an object.