简体中文
namespace TestNameSpace { public class Test { public void Show(string text) { // 将显示文本消息 – 来自 System.Windows.Forms.MessageBox 类的静态方法 Show(string text); System.Windows.Forms.MessageBox.Show(text); } } }
TestNameSpace.Test test = new TestNameSpace.Test(); // 创建 Test 类的对象
test.Show("Hello world"); // 调用 Test 类的 void Show() 方法
此页面对您有帮助吗?