class1 st = new class1();
string a = addresse.Text;
System.Threading.Thread th1 = new System.Threading.Thread(new System.Threading.ThreadStart(st.start));
th1.Start();
这就是我们所拥有的
class class1
{
public void start(string m)
{
System.Diagnostics.Process.Start(m);
}
}
注意:用户,输入运行文件的地址,并希望通过我们放置的类使用线程运行文件获取地址并运行文件
问题是线程不接受来自文本框的地址。
我应该怎么办?