Activity overview
Latest activity by mclarke
URLs for Error and Feature Reporting,
I've had a search and can't find this, can someone tell me which url does the error and feature reporting reports get sent to as default?
Thanks in advance,
Martin
Suggestion: Patch Friendly Settings
Hi,
We use binary patches for our application - I noticed in the EAP forum a similar question was asked: http://www.red-gate.com/messageboard/vi ... hp?t=11010
I'm finding that our binaries are cha...
Thanks for the update Dom. / comments
Thanks for the update Dom.
Dom/Chris,
Thanks for the update, that is great news regarding a patch. Should I just keep an eye on the forum for the patch being released?
Thanks,
Martin / comments
Dom/Chris,
Thanks for the update, that is great news regarding a patch. Should I just keep an eye on the forum for the patch being released?
Thanks,
Martin
Pruning doesn't seem to work where the parameter is opitonal.
For example... public class Program
{
public void DoIt()
{
MyImportantMethod();
MyImportantMethod("Test");
}
private object MyImportantMethod(string AnImportantMethod = "Test")
{
if (AnImportantMethod != null && AnImportantMethod.Length < 5)
// trivial...
return new object();
else
// trivial...
return null;
}
}
returns the following sig for the private method. private object \u0001(string AnImportantMethod = "Test")
/ comments
Pruning doesn't seem to work where the parameter is opitonal.
For example...public class Program
{
public void DoIt()
{
MyImportantMethod()...
Dlls/ExcludePublicMembers: Private methods signature?
Hi,
I'm obfuscating a DLL (SA 6.6.1.44) and I'm a little surprised that the signature of the private methods aren't changing. What I mean is if I had a class as follows:public class MyImportantClas...