using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;namespace MyLib
{
class Class1
{
public void MyMessageBox(string Prompt)
{
MessageBox.Show(Prompt);
}
}
}
出现错误:当前上下文中不存在名称“MessageBox”