Hi.cs 172 B

123456789101112131415
  1. namespace MyApp
  2. {
  3. using System;
  4. public class Hi
  5. {
  6. public static int Main(string[] args)
  7. {
  8. My fu = new My("Hello there");
  9. fu.display();
  10. return 0;
  11. }
  12. }
  13. }