if I execute:
resultNETframworkv10 = Registry.DoesKeyExist(HKEY_LOCAL_MACHINE, "\\SOFTWARE\\Microsoft\\.NETFramework\\PendingUpda tes\\v1.0");
assume it is true
if (resultNETframworkv10 == true) then
output = Dialog.Message("output", "message", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
end
how would you recommend construct a boolean compare?

