fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. // your code goes here
  8. }
  9. }
  10.  
  11. class person
  12. {
  13. private string name;
  14. public person(string n)
  15. {
  16. this.name=n;
  17. }
  18.  
  19. public virtual void show()
  20. {
  21. Console.WriteLine("装扮的{0},name");
  22. }
  23. }
Success #stdin #stdout 0.04s 19660KB
stdin
Standard input is empty
stdout
Standard output is empty