私はクラスライブラリを持っており、プロデューサーとコンシューマーベースのマルチスレッドのクラスがあります。
private void WorkDeQueue()
{
while (true)
{
string Url = null;
lock (locker)
{
if (queueList.Count > 0)
{
Url = queueList.Dequeue();
/* return if a null is found in the queue */
if (Url == null) return;
}
}
if (Url != null)
{
/* if a job was found then process it */
GetData(Url); //This Is a Method
}
else
{
/* if a job was not found (meaning list is empty) then
* wait till something is added to it*/
wh.WaitOne();
}
}
}
このGetDataメソッドには、そのクラスの本体がありません。GetDataの代わりにプロジェクトのメソッドを呼び出すにはどうすればよいですか。
ファクトリパターンとリフレクションを試してみましたが、どちらもうまくいきませんでした。plzは、ここからプロジェクトの任意のメソッドを呼び出す方法を教えてくれます。