C#使用linq对数组进行筛选排序的方法
程序员文章站
2023-11-27 12:59:04
本文实例讲述了c#使用linq对数组进行筛选排序的方法。分享给大家供大家参考。具体如下:
using system;
using system.collecti...
本文实例讲述了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#程序设计有所帮助。