fork download
  1. using System;
  2.  
  3. namespace Test
  4. {
  5. class Hoge
  6. {
  7. public string hoge
  8. {
  9. set {}
  10. get { return "hoge"; }
  11. }
  12. }
  13.  
  14. class Program
  15. {
  16. public static void Main()
  17. {
  18. var hoge = new Hoge();
  19. hoge.hoge += "fuga";
  20. Console.WriteLine (hoge.hoge);
  21. }
  22. }
  23. }
Success #stdin #stdout 0.02s 33792KB
stdin
Standard input is empty
stdout
hoge