序列中是否包含指定元素

2021-09-25 14:25:18 字數 713 閱讀 7370

using system;

using system.collections.generic;

using system.componentmodel;

using system.data;

using system.drawing;

using system.linq;

using system.text;

using system.windows.forms;

namespace contains

private void frm_main_load(object sender, eventargs e)

bool result = people.contains(new person(3, "user03"));//檢查序列是否包含指定元素

//顯示查詢結果

label1.text = "資料來源:people(包含9個元素,元素的id值分別為1、2、3、......、9)";//資料來源

label2.text = "查詢表示式:contains(new person(3,\"user03\"))";//查詢表示式/操作

label3.text = "查詢結果:"+result.tostring();//查詢結果}}

public class person

public int id //人員id

public string name //人員名稱}}

獲取指定的class元素或者判斷是否包含style

js中 獲取指定的class元素或者判斷是否包含style 1 獲取是否含有指定的class test hasclass ico open 其中 test為同一級別的div的class,icon為後面的class 例如 判斷時候用if,如果包含的話,返回true 2 判斷是否包含style屬性 if...

擴充套件方法判斷序列 或集合 是否包含元素

自定義擴充套件方法 public static class enumerableextensions public static bool isnotempty this ienumerablesource 測試用到的person類 public class person set private s...

陣列是否包含某個元素

一 檢查陣列是否包含某個值的方法 使用list public static boolean uselist string arr,string targetvalue 使用set public static boolean useset string arr,string targetvalue 使...