02-08-2007 05:23 PM
02-08-2007 07:06 PM
02-09-2007 09:56 AM
That is correct. If you call DAQmx directly, you are going through native C interfaces. This means you'll be working with pointers and CLI/C++ ability to use IJW ("it just works") interop. This is not "safe" in .NET terms as it uses unmanaged pointers.
If you use the Measurement Studio interface, then you are working with an API that has been crafted for .NET and is callable from CLI/C++ as well as C# and VB.NET. This does allow for the safe flag in CLI/C++.
02-09-2007 02:28 PM