LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

System.action console net delegate

Hello All,

 

Please help me to understand and create status action block using given reference demo C# code.

 

Please find the attached files for reference

 

Thank you for supporting.

Download All
0 Kudos
Message 1 of 2
(850 Views)

You can't create delegates types (generic or not) directly in .NET, as their constructor requires a pointer to the method to execute. You can only use delegates indirectly via Event Handlers (if your .NET type supports events for the functionality you are after).

 

In your case, I would add additional API methods (either in "ProductionProcesses.dll" if you own it or another assembly).

0 Kudos
Message 2 of 2
(808 Views)