I would like to develop a workflow designer or BPM using C# with asp.net mvc core. Please help me on how to run methods from xml file without using reflection.
Sample link which i got below
Reading XML and executing functions dynamically using C#
- I would like to use drag and drop components - ex : copy file, Move file
- While saving this components or a workflow , it will be saved in xml format
Ex :
<Myworkflow><method><CopyFile><prop><from></from><to></to></prop></CopyFile></method><Myworkflow>Execute/call a predefined function written - sequentially based on this XML with parameters
Kindly help me with resources which will dynamically call methods with parameters without reflection.
Cheers