Hi JB,
i like change the name of backgroundWorker_DoWork method
void main
{
backgroundWorker.DoWork += new
DoWorkEventHandler(backgroundWorker_DoWork);
}
void backgroundWorker_DoWork(object sender, DoWorkEventArgs e)
{
do something
}
Fullname of backgroundWorker_DoWork Method
{System.Void
Sample.MainForm::backgroundWorker_DoWork(System.Object,System.ComponentModel.DoWorkEventArgs)}
Compiler Generated Delegate ? The event dosnt work any more after
changing method name.
{System.Void Sample.MainForm/
<>c__DisplayClass1::<backgroundWorker_DoWork>b__0()}
I use a loop to change method names (I work on a obfuscator and this
is my last problem).
I need to change the name in the "Compiler Generated Delegate ?". Is
there a better way than regex ?
I hope you can follow me.
--
--
mono-cecil