一、any()只要有一个符合条件就返回true

        static void Main(string[] args)
{
//any 有符合条件的就返回true
int[] nums = { ,,,,,,,,,};
bool flag = nums.Any(i => i >= );
Console.WriteLine(flag);
}

linq any() all() 返回true 或者false-LMLPHP

二、all()所有的都符合条件就返回true

      static void Main(string[] args)
{
//all 所有的都符合条件就返回true
int[] nums = { ,,,,,,,,,};
bool flag = nums.All(i => i >= );
Console.WriteLine(flag);
}

linq any() all() 返回true 或者false-LMLPHP

05-01 22:47