所以我有这些变量
List<string> files, images = new List<string>();
string rootStr;
而这个线程函数
private static int[] thread_search(string root,List<string> files, List<string> images)
但是当我尝试启动线程时:
trd = new Thread(new ThreadStart(this.thread_search(rootStr,files,images)));
我收到此错误:
错误 1 成员 'UnusedImageRemover.Form1.thread_search(string, System.Collections.Generic.List, System.Collections.Generic.List)' 无法通过实例引用访问;使用类型名称来限定它 E:\Other\Projects\UnusedImageRemover\UnusedImageRemover\Form1.cs 149 46 UnusedImageRemover
你能告诉我我做错了什么吗?