示例#1
0
 public ThreadWrapper(FastThreadMethod method, Thread AThread, params object[] args)
 {
     _params = args;
     _method = method;
     _thread = AThread;
 }
示例#2
0
 public static Thread FastThread(FastThreadMethod method, Thread AThread, params object[] args)
 {
     return(new ThreadWrapper(method, AThread, args).TheThread);
 }
示例#3
0
 public ThreadWrapper(FastThreadMethod method, params object[] args)
     : this(method, null, args)
 {
 }
示例#4
0
 public static Thread FastThread(FastThreadMethod method, params object[] args)
 {
     return(FastThread(method, null, args));
 }