请问,dll文件为什么不能MessageBox.Show()
创建一个dll文件,如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
namespace aaaaa
{
public class Person
{
public void Say()
{
MessageBox.Show("dfgfg");
}
}
}