03-15-2022 02:38 AM
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.
03-15-2022 02:26 PM
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).