05-21-2014 11:12 AM
How can we inherit a labVIEW class from an external C# class within LabVIEW.
Examples are greatly appreciated.
05-21-2014 01:44 PM
A LabVIEW class cannot inherit from an external C# class.
05-21-2014 01:48 PM
All classes must inherit from the LabVIEW Object class Inheritance from another Laguage would be pretty scary to say the least.
05-21-2014 04:14 PM
If you are new to LabVIEW OOP and coming from a C# OO background I would highly recommend reading LabVIEW Object-Oriented Programming: The Decisions Behind the Design - the LabVIEW implementation of OOP had to make a number of design decisions for OO concepts that do not easily translate to dataflow programming and that article discusses many of those differences.
Regards,
Jeff Peacock
Product Support Engineer | LabVIEW R&D | National Instruments | Certified LabVIEW Architect
05-21-2014 08:32 PM
Thank You everyone for the prompt response.