使用Lambda的表達式來過濾符合條件的數據。下麵的代碼實現,是把字元陣列中,把名字長度等於3元素找出來。 class Bv { public void LambdaExpression() { string[] names = new string[] { "insus", "leo", "yan ...
使用Lambda的表達式來過濾符合條件的數據。下麵的代碼實現,是把字元陣列中,把名字長度等於3元素找出來。
class Bv { public void LambdaExpression() { string[] names = new string[] { "insus", "leo", "yang", "Joe", "Michael" }; var result = names.Where(x => x.Length == 3); foreach (string s in result) { Console.WriteLine(s); } } }Source Code
運行結果: