I am trying to call a .NET Assembly method from Labview which has the following signature in managed C++,
bool ReadInfo ( [InAttribute] int mobileIndex_, [OutAttribute] Double& fer_, [OutAttribute] Double& ser_);
I can call the this method from other .NET client program (e.g. TestStand) with no problem. In Labview I see the OutAttribute parameters as .NET refnum and I cannot seem to get the values passed back from my assembly.