Due to some reflection actions, I have the need to exclude some methods from Dotfuscator ce obfuscation:
[Obfuscation(Exclude = true)]
internal MyMethod (String input1)
{
string member1 = "hello"
string member2 = "world"
[...]
}
The Obfuscation attribute does this job, but now also the complete content of the method is not obfuscated any more. How I can achieve that the name MyMethod will not be obfuscated, but the members member1, member2 etc are still obfuscated?