方法当参数传入 if(func(item))
public IEnumerble<T> where<T>(IEnumerble<T> tSource,func<T,bool> func )
{
List<T> tList = new List<T>();
foreach(var item in tSource)
{
if(func(item))
{
tList.add(item);
}
return tList;
}
}
方法当参数传入 if(func(item))
public IEnumerble<T> where<T>(IEnumerble<T> tSource,func<T,bool> func )
{
List<T> tList = new List<T>();
foreach(var item in tSource)
{
if(func(item))
{
tList.add(item);
}
return tList;
}
}
转载于:https://my.oschina.net/wzit/blog/862949