我有
class Voo
{
private static AnotherClass Doo(int id)
{
//do some stuff with id then return object of AnotherClass
return x[0];
}
}
并将此私人与痣一起使用
MVoo.DooInt32 = delegate ...
现在我将方法更改为:
class Voo
{
private static AnotherClass Doo(string a, object b)
{
//do some stuff with a and b then return object of AnotherClass
return x[0];
}
}
但是痣并没有给我新的签名。门槛MVoo.DooInt32 但我期待MVoo.DooStringObject
我删除了痣参考,清洁,重建。目前还没有阳性结果。
有任何想法吗?