I have a C# understanding problem. The following code:
this.workingThread = new Thread(new ParameterizedThreadStart(this.WorkingThreadFunction));
is definitely called, but somehow I don't come in that function:
private void WorkingThreadFunction(object args) {}