当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


LINQ Single()用法及代码示例


在LINQ中,Single()方法用于从集合中返回满足条件的单个元素。如果 Single() 方法发现集合中有多个元素或集合中没有元素,则会抛出 "InvalidOperationException" 错误。

LINQ Single() 方法的语法

使用 LINQ Single() 方法从集合中获取单个元素的语法。

int a = objList.Single();

在上面的语法中,我们使用 LINQ Single() 方法从列表中获取单个元素。

LINQ Single() 方法示例

下面是从集合中获取单个元素的 LINQ Single() 方法的示例。

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 object objStudent of the class Student added the record to the list.
            List<Student> objStudent = new List<Student>()
            {
                new Student() { Name = "Shubham Rastogi", Gender = "Male",Location="Chennai" },
                new Student() { Name = "Rohini Tyagi", Gender = "Female", Location="Chennai" },
                new Student() { Name = "Praveen Alavala", Gender = "Male",Location="Bangalore" },
                new Student() { Name = "Sateesh Rastogi", Gender = "Male", Location ="Vizag"},
                new Student() { Name = "Madhav Sai", Gender = "Male", Location="Nagpur"}
            };
    //initialize the array objList
                int[] objList = { 1 };
    //objStudent.Single() used to select the student
                var user = objStudent.Single(s => s.Name == "Shubham Rastogi");
                string result = user.Name;
                int val = objList.Single();
                Console.WriteLine("Element from objStudent:{0}", result);
                Console.WriteLine("Element from objList:{0}", val);
                Console.ReadLine();
        }
    }
        class Student
        {
           public string Name { get; set; }
           public string Gender { get; set; }
           public string Location { get; set; }
        }
}

在上面的示例中,我们使用 LINQ Single() 运算符从集合 "objStudent" 中获取单个元素。

输出:

LINQ Single() Method



相关用法


注:本文由纯净天空筛选整理自 LINQ Single() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。