Coding
About System.Threading.Tasks and external library
I was Trying to do some multithreading by calling Parallel.Invoke () => myMethod(Obj1),() => myMethod(Obj2)); so that those two methods would run parallel. Obj1 and Obj2 are objects from an external library. I did some Read more…