所以我有一個dll文件,可以生成關於它們的人員和數據。每次改變時,dll都會引發一個事件。我需要訂閱該事件,然後處理數據。如何從dll文件訂閱事件並獲取由dll生成的列表?
我對DLL
namespace PeopleGenerator
{
public class RawPeopleDataEventArgs : EventArgs
{
public RawPeopleDataEventArgs(List<string> peopleData)
{
PeopleData = peopleData;
}
public List<string> PeopleData { get; }
}
public interface IPeopleGenerator
{
event EventHandler<RawPeopleDataEventArgs> PeopleDataReady;
}
}
我也已經給出關於工廠的信息,我可以用它來得到一個IPeopleGenerator對象
namespace PeopleGenerator
{
public class PeopleGeneratorFactory
{
public static IPeopleGenerator CreatePeopleDataReceiver()
}
}
現在我試圖使以下信息訂閱級別
namespace Test
{
class EventSubscriber
{
public EventSubscriber(object o, RawPeopleDataEventArgs args)
{
List<string> listofpeople = args.PeopleData;
printList(listofpeople);
}
void printList(List<string> print)
{
print.ForEach(Console.WriteLine);
// More data processing to happen here
}
}
}
我的問題是我不知道如何啓動基因組從DLL的數據。與工廠類。我的想法是這樣的
static void Main(string[] args)
{
//generate a new object
EventSubscriber sub = new EventSubscriber(????);
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
也許[this](https://msdn.microsoft.com/en-us/library/ms366768.aspx)可以幫助你 –
看起來你在建築航天方面有點迷失,你從未使用過工廠功能上或訂閱該事件。請考慮[代替迭代器](https://msdn.microsoft.com/en-us/library/65zzykke(v = vs.100).aspx)。 –