我有几个具体使用以下类型的界面
interface IActivity<T> { bool Process(T inputInfo); }
具体课程如下
class ReportActivityManager :IActivity<DataTable> { public bool Process(DataTable inputInfo) { // Some coding here } } class AnalyzerActivityManager :IActivity<string[]> { public bool Process(string[] inputInfo) { // Some coding here } }
现在我如何编写一个类似于IActivity的一些类似的界面的工厂类.
class Factory { public IActivity<T> Get(string module) { // ... How can i code here } }
谢谢