概念的には、次のことを実行したいのですが、C#で正しくコーディングする方法を理解するのに苦労しました。
SomeMethod { // Member of AClass{}
DoSomething;
Start WorkerMethod() from BClass in another thread;
DoSomethingElse;
}
次に、WorkerMethod()が完了したら、次のコマンドを実行します。
void SomeOtherMethod() // Also member of AClass{}
{ ... }
誰かがその例を挙げてもらえますか?