关于委托的进一步了解

 

声明一个委托

public delegate  T GetListDelegate<T>(Datarow row)//Datarow 为参数类型

使用委托

public  List<T> GetDataSet<T>(string s ,GetListDelegate GetItem)

{

      List<T>  list = null;

     Datarow row=

      list.add(GetItem(row))

}

//得到ITEM的方法

private productlist GetItem()

{

 

}

 

posted @ 2018-09-03 12:05  wonderfulviews  阅读(122)  评论(0编辑  收藏  举报