M
MR
I have two C#.Net projects, both of which create instances of the same C#
class from a separate assembly; the class creates its own thread.
When either project is run alone, it works correctly. However, when they
are run simultaneously, I get a threading error (from
System.Threading.ThreadHelper.ThreadStart_Context) in the project that
starts last.
Don't C# .Net programs run in their own process spaces? Does the fact that
they both instantiate the same class from the same assembly mean that the
process space is shared?
Thanks for any ideas on this.
class from a separate assembly; the class creates its own thread.
When either project is run alone, it works correctly. However, when they
are run simultaneously, I get a threading error (from
System.Threading.ThreadHelper.ThreadStart_Context) in the project that
starts last.
Don't C# .Net programs run in their own process spaces? Does the fact that
they both instantiate the same class from the same assembly mean that the
process space is shared?
Thanks for any ideas on this.