У меня было
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
Я удалил ссылку на родинки, очистил, восстановил.Пока нет положительного результата.
Есть идеи?