I hoped each thread would get it's own color based on an external
parameter that's set at load time. However, ocassionlly outputs means
to be in green are coming out in red and so on.
Any ideas?
public static class SharedLock {
public static readonly object Lock = new object();
}
then lock(SharedLock.Lock) {...}
Marc