testClass.cs 306 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace WindowsApplication1
  5. {
  6. public class testClass
  7. {
  8. public testClass() {
  9. }
  10. string testMsg = "";
  11. public string ShowTest(string msg)
  12. {
  13. return msg + "来至GOGO";
  14. }
  15. }
  16. }