using System; using System.Collections.Generic; using System.Text; namespace WindowsApplication1 { public class testClass { public testClass() { } string testMsg = ""; public string ShowTest(string msg) { return msg + "来至GOGO"; } } }