C# Linq 查找 List<> 集合元素

C# Linq 查找 List<> 集合元素
        static void Main(string[] args)
        {
            List<Student> students = new List<Student>{
                new Student {Name="Tom", Score=50},
                new Student {Name="Mark", Score=80},
                new Student {Name="Alice", Score=70},
            };

            // 查找条件
            var query = from student in students
                        where student.Name == "Mark"
                        select student;

            // 输出查找结果
            foreach (Student item in query)
            {
                Console.WriteLine(item.Name + " - " + item.Score);
            }

            Console.Read();
        }

        class Student
        {
            /// <summary>
            /// 姓名
            /// </summary>
            public string Name { get; set; }

            /// <summary>
            /// 分数
            /// </summary>
            public int Score { get; set; }
        }

作者最新文章
C# 使用 CSVHelper 操作 csv 文件, .net core, .net framework 读取写入 csv 文件
C# 实现字符串文本换行的方法,文本如何换行
C# 如何循环读取文件每一行文本内容
C# DateTime AddMonths 的错误用法导致跳过日期
C# 全角转换半角,半角转换为全角