Parallel Task In C#.net

Posted by Test123 on Stack Overflow See other posts from Stack Overflow or by Test123
Published on 2010-03-15T10:19:30Z Indexed on 2010/03/15 10:29 UTC
Read the original article Hit count: 262

Filed under:
|
|

I have C#.net application. I wanted to run my application In Thread. But because of third party dll it dont allow to use application in multiThread. There is one object in thrid party dll ,which only allow to create instance at one time only.

When i manually run application exe instnace multiple time & process my data it process successfully..(might because of each exe run with its application domain)

Same thing i require to implement from C# code. for that i have created dll which can accessible by Type.GetTypeFromProgID()..but multiple dll instnace creating same problem.

Is there any way i could achive manual parallelism through code to process same exe code in multiple application domain?

© Stack Overflow or respective owner

Related posts about c#

Related posts about task