08-19-2009, 10:30 AM
|
fabriciogomes
Joined on 08-20-2009
Posts 1
|
Two problems with obfuscator
|
 
 
|
|
|
I have a application in ASP.NET C# with two problems with obfuscator...
In first case, the obfuscator throw a error in IIS on this code:
this.lblCaixaStatus.ForeColor = (condition ? Color.Green : Color.Red);
if i change to:
if (condition)
this.lblCaixaStatus.ForeColor = Color.FromArgb(0, 255, 0);
else
this.lblCaixaStatus.ForeColor = Color.FromArgb(255, 0, 0);
it works!!!
And in second case, in a Windows 2008 Server (64 bits), I receive the following error:
"Common Language Runtime detected an invalid program"
I can´t found a solution for this case... Anybody?
Sorry my english!!!
|
|
|
|
|
Report
|
|
|
|