一、說明
委託predicate 可以有引數(比如下面的示例),也可以不帶引數,委託predicate是返回固定值bool值的委託
二、示例**(控制台程式)
usingview codesystem;
using
system.collections.generic;
using
system.linq;
using
system.text;
using
system.threading.tasks;
namespace
learn1
,
new student(),
new student(),
new student(),
new student(),
new student(),
new student(),
new student(),
new student(),
new student(),
new student(),
new student(),
new student()
};list
resultlist = mylist.findall(new predicate(
delegate
(student stu)
}if(clastate==1
)
}return
isok;
}));
resultlist.foreach(x =>,年齡:,班級:
",x.name,x.age,x.classname);
});console.readkey();}}
public
class
student
public
string classname
public
int age }}
使用predicate和Action委託查詢
using system using system.collections.generic using system.linq using system.text namespace usepredicatedelegate public void predicatedelegate p list ...
C 委託基礎 泛型委託Predicate
c 委託基礎系列原於2011年2月份發表在我的新浪部落格中,現在將其般至本部落格。此委託返回乙個bool值,該委託通常引用乙個 判斷條件函式 需要指出的是,判斷條件一般為 外部的硬性條件 比如 大於50 而不是由資料自身指定,不如 查詢陣列中最大的元素就不適合 例一 csharp class pro...
關於Predicate委託
關於predicate委託 predicate委託在.net類類庫中經常出現,此委託的定義如下 public delegatebool predicate t obj 從其定義可以看到,此委託引用乙個返回bool 值的方法,在實際開發中,通常使用predicate委託變數引用乙個 判斷條件函式 在判...