In the project in which I am involved, there is a requirement that the price of certain stocks will be requested from some web interface and displayed in some way.
I know that part of the request can be easily implemented using a Perl module such as LWP :: UserAgent. But for some reason, C # was chosen as the language for implementing the Display part. I do not want to add any IPC (for example, socket or indirectly through the database) to this tiny project, so my question is, is there any C # equivalent to Perl LWP :: UserAgent?
source
share