我正在尝试运行与数据库的MySQL连接。代码是正确的,但是我无法让课程运行。
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
Application.Run(new DBInfo());
}
}
我得到的两个错误是“匹配的最佳重载方法'System.Windows.Forms.Application.Run(System.Windows.Forms.Form);
有一些无效参数
Argument '1': cannot convert from 'DBtest.DBInfo' to 'System.Windows.Forms.Form'
DBInfo 只是在单独的脚本中初始化应用程序。
public DBInfo()
{
Initialize();
}