FooWithToString.cs 325 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace MonoTests.Common
  6. {
  7. class FooWithToString
  8. {
  9. public string Column1 { get; set; }
  10. public FooWithToString ()
  11. {
  12. Column1 = "hello";
  13. }
  14. public override string ToString()
  15. {
  16. return "ValueFrom_ToString";
  17. }
  18. }
  19. }