当前位置:编程学习 > C#/ASP.NET >>

Linq 对象OrderBy对象属性-属性字符串配置实现

 class Person
    {
        public string Name { get; set; }
        public string Department { get; set; }
        public string Age { get; set; }
        public string Address { get; set; }
    }
    class Program
    {
        static void Main(string[] args)
        {
            object o = new object(); 
            List<Person> persons = new List<Person>();
            persons.Add(new Person(){Name="def"});
            persons.Add(new Person() { Name = "aef" });
            var ps = from p in persons
                    orderby GetInfo(p,"Name")
                    select p;
            foreach (Person p in ps)
            {
                Console.WriteLine(p.Name);
            }
            Console.ReadKey();
        }

        static object GetInfo(Person p, string name)
        {
            return p.GetType().GetProperty(name).GetValue(p, null);
        }
    }

    
补充:软件开发 , C# ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,