linq的使用

简介: using System; using System.Linq; using System.Collections.Generic; class Exapmple1_1 { static void Main() { string[] names=...
using System;
using System.Linq;
using System.Collections.Generic;

class Exapmple1_1
{
    static void Main()
    {
        string[] names={"Burke","Connor","Frank",
            "Everett","Albert","George"};      
        IEnumerable<string> expr = from s in names
                                   where s.Length == 5
                                   orderby s
                                   select s.ToUpper();
        foreach (string item in expr)
        {
            Console.WriteLine(item);
        }
        string s1 = Console.ReadLine();
    }
}
相关文章
|
4月前
|
开发框架 自然语言处理 .NET
C#一分钟浅谈:LINQ 查询表达式的使用技巧
【9月更文挑战第6天】LINQ(Language Integrated Query)是C#开发中的强大工具,使查询数据集合变得简单且接近自然语言。本文从基础入手,通过具体示例讲解LINQ查询表达式的使用技巧,包括过滤、排序和分组等操作。同时,文章还探讨了常见问题及解决方法,如性能优化、过早枚举和类型转换等,帮助开发者写出更高效、易维护的代码。
108 15
|
XML SQL 开发框架
LINQ初步
C#中的LINQ入门学习
75 0
|
开发框架 .NET
2.3 LINQ
.net core LINQ
|
开发框架 .NET Serverless
C# Linq语言集成查询
C# Linq语言集成查询