I have legacy dll (code is not available). In this dll there is static class that connects to remote PC by IP. The available code enables connection to single IP at a time.
The problem: I need to connect to multiple IP's at the same time from same runtime.
Is there trivial way to do so without creating seperate AppDomain
for each instance?
In other words - Is there a pattern that "cancels" static
objects?
Tahnk you