私が持っていた
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];
}
}
しかし、ほくろは私に新しい署名を与えません。Sill MVoo.DooInt32しかし、私はMVoo.DooStringObject を期待しています
ほくろの参照を削除し、きれいにして再構築しました。これまでのところ肯定的な結果はありません。
何か案は?