如何从类库中调用Project的任何方法?

时间:2010-03-19 21:45:29

标签: c# .net class-library

我有类库,其中有一类基于生产者和消费者的多线程。

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。

我尝试使用工厂模式和反射,但两者都不适合我。 所以请告诉我如何从这里调用我项目的任何方法。

1 个答案:

答案 0 :(得分:1)

不是很多信息要继续,但我可能会将GetData放入委托中,因此您可以在创建类实例时将其替换为所需的内容。就像是: “     公共类Class1     {         public delegate void GetDataDelegate(string url);         私有事件GetDataDelegate GetData;

    public Class1(GetDataDelegate getData)
    {
        GetData += getData;
    }

    //blah blah blah
}