01-29-2009 02:14 PM
I am working on aproject that has a multi-disciplinary software development team. My specialtyis LabVIEW, and I am trying to use a .NET assembly created in C#. I havebeen able to access most of the constructors so far. However, thisassembly will be used to feed data to my VI that will be displayed every timenew processed data is available. I am going to need that data in the formof a Cluster. How is a clusterimplemented in C# for use in the assembly?
01-30-2009 12:57 PM
The way to pass a cluster to and from your C# code is to use a Struct.
01-31-2009 06:01 PM
Matt,
Here is a great reference for using structures. Let me know if this helps!