Hi guys, i started obfuscation but i need a little help, first i have a little problem and when i am obfuscating methods program is crashing and i used this code (for obfuscating methods):
(Code is in C#)
foreach (var mthdDef in typeDef.Methods)
{
if (!mthdDef.IsConstructor && !mthdDef.IsRuntime)
{
Console.WriteLine("Method \"{0}\" Protected...", mthdDef.Name);
mthdDef.Name = EncodeString(mthdDef.Name);
}
}
i want to fix this first :S
My sedond question is how to encrypt strings, i dont have idea how to do it...
And the last question is how to add classes to a assmebly, i saw that the creator of "LaunchIW4M.exe" obfuscated it and he did good job:
So if any1 know plz help me