手机
当前位置:查字典教程网 >编程开发 >C#教程 >C#使用linq对数组进行筛选排序的方法
C#使用linq对数组进行筛选排序的方法
摘要:本文实例讲述了C#使用linq对数组进行筛选排序的方法。分享给大家供大家参考。具体如下:usingSystem;usingSystem.Co...

本文实例讲述了C#使用linq对数组进行筛选排序的方法。分享给大家供大家参考。具体如下:

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace OrderQueryResults { class Program { static void Main(string[] args) { string[] names = {"kaka","kunka","kumar","James","Smith"}; var queryResults = from n in names where n.StartsWith("k") orderby n select n; Console.WriteLine("Names beginning with k:"); foreach (var item in queryResults) { Console.WriteLine(item); } Console.ReadLine(); } } }

希望本文所述对大家的C#程序设计有所帮助。

【C#使用linq对数组进行筛选排序的方法】相关文章:

使用C#开发Socket通讯的方法

使用checked语句防止数据溢出的解决方法

C#调用Java类的实现方法

C#中判断本地系统的网络连接状态的方法

c# 快速排序算法

使用C# Winform应用程序获取网页源文件的解决方法

C#操作注册表的方法

C# 获取属性名的方法

C#生成sitemap站点地图的方法

C# 设置系统日期格式的方法

精品推荐
分类导航