LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

LABVIEW and C#

Hi,
 
Can I use Labview 6.1 to call C# DLL
 
thanks
0 Kudos
Message 1 of 2
(2,300 Views)
Support for .NET was added to LV starting in version 7.0.
 
Ways you can work around that are
 
1. Build another .NET assembly using C++/CLI (managed C++). This .NET language supports the creation of DLLs with regular C-style entry points. You could then call that assembly from LabVIEW using the Call Library Node or CIN.
 
2. Some .NET classes can be exposed as COM classes. If you're can be exported that way, you can use LV's ActiveX support to call it. See http://msdn2.microsoft.com/en-us/library/zsfww439.aspx
0 Kudos
Message 2 of 2
(2,280 Views)