Código Delphi [-] function iif(Value: Boolean; Str1, Str2: String): String; begin if Value then Result:= Str1 else Result:= Str2; end;
function iif(Value: Boolean; Str1, Str2: String): String; begin if Value then Result:= Str1 else Result:= Str2; end;