我在 program.cs 中运行方法时遇到问题
例如,这是在我的 program.cs 中:
public string tryConn(string address, string name, string password)
{
string connString = (address + ':' + name + ';' + password);
try
{
connect(connString);
return true;
}
catch
{
return false;
}
}
在一个表单上,在一个按钮 _Click 方法中,我试图像这样运行这个函数:
private void button1_Click(object sender, EventArgs e)
{
bool _conn = WindowsFormsApplication1.Program.tryConn('127.0.0.1','root','toor')
}
它只是没有任何东西,任何人都可以描述我将采取哪些步骤才能让它发挥作用?