fork download
  1. using System;
  2.  
  3. public class Person {
  4. public int Age { get; set; }
  5. }
  6.  
  7. public class Test
  8. {
  9. public static void Main()
  10. {
  11. var p = new Person();
  12. }
  13. }
Success #stdin #stdout 0s 33528KB
stdin
Standard input is empty
stdout
Standard output is empty