-3
我有一個類C#:替代品存在或getfirstordefault
class Person {
int Age;
string Name;
}
List<Person> pList = new List<Person>();
pList.Exists(p=> p.Name == "testName"); <-- need an alternative for this.
我使用.NET 3.0。
因此,我無法訪問getFirstOrDefault
方法。
Exists
方法拋出空值的異常,但我不想中斷我的程序流程;有沒有其他的選擇?
我沒有Any
或Linq
可用。
你有什麼?你有一個數組,一個列表,一個'IEnumerable',或者什麼?那個集合裏面有什麼?你想用這個系列做什麼?顯示一些示例輸入/輸出。 – Servy