change input objekt after thread ?
Hello,
How can i change the value of an input objekt after a Thread ?
e.g.
InputClass inputobjekt;
MyClass myclass= new MyClass (inputobjekt);
Thread mythread=new Thread(new ThreadStart(myclass.callmethod));
mythread.Start();
After mythread ended, i have a inputobjekt with new values.
Regards