本文概述
- LINQ到字符串数组的语法
- LINQ to String Array的示例
LINQ到字符串数组的语法 【LINQ转字符串数组】这是在字符串Array上编写LINQ查询以从数组集合中获取所需元素的语法。
IEnumerable<
string>
result = from a in arrselect a;
在以上语法中, 我们编写了LINQ查询以从” arr” 字符串数组获取数据。
LINQ to String Array的示例 这是LINQ to String Array的示例, 用于从名称以” S” 开头的字符串数组序列中获取元素。
using System;
using System. Collections;
using System.Collections.Generic;
using System. Linq;
using System. Text;
using System.Threading.Tasks;
namespace ConsoleApp1{class Programme2{static void Main(string[] args){//create an array of type stringstring[] array = { "Vaishali", "Shalu", "Akshay", "Akki" };
/*IEnumerable will iterate over the collection of data use Linq query to select the particular element which starts from s*/IEnumerable<
string>
result = from a in arraywhere a.ToLowerInvariant().StartsWith("s")select a;
//foreach loop is used to print the output which is in the resultforeach (string item in result){Console.WriteLine(item);
}Console.ReadLine();
}}}
输出
文章图片
LINQ转Int数组
推荐阅读
- LINQ转Int数组
- LINQ对象
- LINQ转字符串
- Android驱动学习-灯光系统总体框架
- Android Studio移动鼠标显示悬浮提示的设置方法
- ●UVA 10652 Board Wrapping
- android inline hook
- tomcat 登录主页成功 点击Manager App 401 等问题
- Android Studio打包过程和应用安装过程