fork download
  1. using System;
  2.  
  3. public class Foo
  4. {
  5. public Test t = new Test();
  6. }
  7.  
  8. public class Test
  9. {
  10. private string Name;
  11. public static void Main()
  12. {
  13. Foo f = new Foo();
  14. f.t.Name = "something";
  15. }
  16. }
Success #stdin #stdout 0s 33480KB
stdin
Standard input is empty
stdout
Standard output is empty