Hallo!
Als Assembly wird Borland.System.Delphi angezeigt. Folgender Delphi-Code (etwas komplizierter, damit die Optimierung nicht stört)
Delphi-Quellcode:
interface
type
SomeClass = class
public
procedure DoSomething(a : Boolean);
end;
implementation
procedure SomeClass.DoSomething(a : Boolean);
begin
while a do
if a = true then
break;
end;
ergibt laut Lutz Roeder's Reflector:
Code:
public void DoSomething(bool a)
{
while (a)
{
if (a)
{
return;
}
}
}
Ist also "unauffällig".
Grüße
Christian
Christian S.
Admin in der Entwickler-Ecke