fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public string \u002F\u002F = "Hello, world!";
  6.  
  7. public static void Main()
  8. {
  9. Test test = new Test();
  10. System.Console.WriteLine(test.\u002F\u002F);
  11. System.Console.WriteLine(test.GetType().GetField("/").GetValue(test));
  12. }
  13. }
Success #stdin #stdout 0.04s 36920KB
stdin
Standard input is empty
stdout
Hello, world!
Hello, world!