如何更新List<object>里某个对象的属性

 我来答
东坡下载站
2019-01-13 · 最新优质手游软件资源下载
东坡下载站
东坡下载是一个专业的无毒的免费的软件资源网站
向TA提问
展开全部

List<student> s= new student()
{
   new student {name ="11111",adress ="22222"},
   new student {name ="22222",adress ="22222"},
   new student {name ="33333",adress ="22222"}
}

正确的写法其实是这样的:

using System.Collections.Generic;
using System.Linq;
        public static void Test()
        {
            var students = new List<Student>()
            {
                new Student {Name = "11111", Adress = "22222"},
                new Student {Name = "22222", Adress = "22222"},
                new Student {Name = "33333", Adress = "22222"}
            };
            var list = students.Where(o => o.Name == "22222").ToList();
            foreach (var student in list)
            {
                student.Adress = "00000";
            }
        }

        private class Student
        {
            public string Name { get; set; }
            public string Adress { get; set; }
        }
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式