码迷,mamicode.com
首页 > Windows程序 > 详细

[C#]上课笔5月27日,Linq的使用方法

时间:2021-06-02 12:28:38      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:for   show   enum   order   lsh   erb   img   linq   mic   

Linq的操作对象都是集合。

技术图片

    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();

            int[] scores = { 90, 71, 82, 93, 75, 82 };
            IEnumerable<int> scoreQuery =
                from score in scores
                where score > 80
                orderby score descending
                select score;

            foreach (int x in scoreQuery)
            {
                lblShow.Text += x + "" + "\n";
            }
        }
    }

 

[C#]上课笔5月27日,Linq的使用方法

标签:for   show   enum   order   lsh   erb   img   linq   mic   

原文地址:https://www.cnblogs.com/HuaiBlog/p/14816407.html

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