怎么开多线程
。。。新增视频时,想开个线程专门处理视频转换问题。不知道怎么开线程。给个例子吧。
------解决方案--------------------System.Threading.Thread t = new System.Threading.Thread(new System.Threading.ParameterizedThreadStart(method));
t.Start(参数对象);
private void method(object status)
{
//status就是传入的参数对象
}