C#里怎么样使用LINQ的let关键字实现查询?
C#里怎么样使用LINQ的let关键字实现查询?
在C#中,let关键字是用来在查询表达式中声明一个范围变量的。范围变量是在迭代过程中保存查询产生的序列中的元素的临时变量。
以下是一个使用let关键字的示例代码:
/*
* C# Program to Implement Let Condition using LINQ
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
class Student
{
public string Name { get; set; }
public string Regno { get; set; }
public int Marks { get; set; }
}
class Program
{
static void Main(string[] args)
{
//Object Initialization for Student class
List<Student> objStudent = new List<Student>{
new Student{ Name="Tom",Regno="R001",Marks=80},