ด้วยเมธอด TrueForAll() ในอาร์เรย์ คุณสามารถตรวจสอบทุกองค์ประกอบเพื่อหาเงื่อนไขได้
เรามาดูตัวอย่างกัน −
ตัวอย่าง
using System; using System.Text; public class Demo { public static void Main() { int[] val = { 97, 45, 76, 21, 89, 45 }; // checking whether all the array element are more than one or not bool result = Array.TrueForAll(val, res => res > 1); Console.WriteLine(result); } }
ผลลัพธ์
True
ด้วยเมธอด TrueForAll() ในอาร์เรย์ คุณสามารถตรวจสอบทุกองค์ประกอบเพื่อหาเงื่อนไขได้
เรามาดูตัวอย่างกัน −
ตัวอย่าง
using System; using System.Text; public class Demo { public static void Main() { int[] val = { 97, 45, 76, 21, 89, 45 }; // checking whether all the array element are more than one or not bool result = Array.TrueForAll(val, res => res > 1); Console.WriteLine(result); } }
ผลลัพธ์
True