我正在使用线程池进行多线程处理,每当我尝试启动我得到的请求时
Object reference not set to an instance of an object.
上
Application.Run(new Form1());
没有代理我没有同样的问题
这是导致麻烦的代码
if (ProxyBox.Text != string.Empty)
{
lock (locker)
{
Random rnd = new Random();
int rndd = rnd.Next(0, int.Parse(ProxyNumber.Text));
request.Proxy = new WebProxy(proxysplit[rndd].ToString());
}
}
基本上我想每次都从 proxysplit 数组中获取一个随机代理
有任何想法吗 :?