12-21-2007 01:42 PM
namespace IODevice_X
{
class PlugIn :
IOPlugin
12-26-2007 05:30 PM
Hi,
Which "list inside LabVIEW" are you referring to? Are you trying to call the constructor through a Constructor Node or access it some other way? Without explicitly labeling the class as "public", the class will not be exported, and will not be automatically populated in LabVIEW. You might be able to manually type everything in, but it will depend on how you are trying to access this class.
12-26-2007 08:45 PM
12-27-2007 05:07 PM
Hi Yohan,
I forgot you were using the constructor and not a function. No, there are not other ways to access the .NET classes. The only thing I can think of that may let you access this constructor without changing the assembly itself is to create another assembly that is public and accesses the class you want. Without the class being declared as public, you will not be able to access the constructor in LabVIEW.
12-28-2007 04:48 PM