How to pass and revieve variables from dll to web server
I am fairly new at programming, especially with .NET so please bear with me. I am trying to create a .NET .dll file that passes some floating point and string variables to a private server to perform sensitive calculations and algorithms. Then I would like the private server to pass back some output variables to the dll, and the dll finishes the rest of the calculations which are less sensitive.
What's the simplest way to approach this and what libraries/packages are needed? How do I ensure the dll waits to receive the server's output before continuing further calculations?
Thanks