I wish to create a sample program in C# where it downloaded real time data (ie datalogger) via USB port. C# accept the data (hex or numerical) and then automatically download a python file (ie validatemethodA.ps) which is then executed. The python accept the data from the C# code and then do validation check on data or do complex calculation and return results back to C#, where the data is displayed on window form and appended to the file (by C#).
The Python is a script, where it does not requires complies in advance (during c# runtime) this mean the user is free to modify the python script to optimise pass/fails parameter or calculation results without getting back to VS2010 to complies the whole program.
This mean I can supply release C# product and only user can modify the python file.
How this is achieved?, is there sample/demo, can anyone link me to this solution so I can experiment this proof of concept?