I am rewriting a C# library to F# and I need to translate the following code
bool success; instance.GetValue(0x10, out success);
what is th
You have to use a reference cell.
let success = ref false instance.GetValue(0x10, success) // access the value !success