public class class1
{
    ...
    Person p = new Person(_id);
    Thead t = new Thead(new TheadStart(p.GetName));
    t.start();
    ...
}public class Person
{
   private string _id;
   public Person(string id)
   {
        _id=id
    }
       
    public string GetName()
    {
         return _id+1;
    }
}以上代码出错信息:方法GetName()与委托void system.thread.threadStart()不匹配。问题一:我这样传参数合理吗?
问题二:请问我怎么能得到新开线程的返回值呢?