码迷,mamicode.com
首页 > 其他好文 > 详细

LINQ---查询语法和方法语法

时间:2019-11-29 22:18:54      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:count()   color   from   形式   lin   bsp   void   string   where   

namespace ConsoleApplication45
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] numbers = { 2, 5, 28, 31, 17, 16, 42 };

            var numsQuery = from n in numbers     //查询语法
                            where n < 20
                            select n;

            var numsMethod = numbers.Where(x => x < 20);   //发放查询

            int numsCount = (from n in numbers      //两种形式组合
                             where n  < 20
                             select n).Count();

            foreach (var x in numsQuery )
            {
                Console.Write("{0}    ", x);
            }
            Console.WriteLine();

            foreach (var x in numsMethod )
            {
                Console.Write("{0}    ", x );

            }
            Console.WriteLine();

            Console.WriteLine("{0}", numsCount );
        }
    }
}

 

LINQ---查询语法和方法语法

标签:count()   color   from   形式   lin   bsp   void   string   where   

原文地址:https://www.cnblogs.com/bedfly/p/11960595.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!