fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public class Person {
  6. public string Name;
  7. }
  8.  
  9. public static void Main()
  10. {
  11. Person p = new Person();
  12. Person q = new Person();
  13. p.Name = "Suzie";
  14. q.Name = "James";
  15.  
  16. Console.WriteLine(p.Name + " " + q.Name);
  17. }
  18. }
Success #stdin #stdout 0.02s 33744KB
stdin
Standard input is empty
stdout
Suzie James