c#处理对象

本文关键字:对象 处理 | 更新日期: 2023-09-27 18:14:03

所以我使用这个库c#,我是一个php开发人员,当我得到一个用户列表使用以下:http://help.globalscape.com/help/eft5_com/Retrieving_a_list_of_users.htm

我得到一个对象,现在在php我将只是->打破这个对象,然后foreach循环通过所有的数组元素来检查用户是否存在,但我不确定如何在c#中做到这一点,谁能帮助我。

c#处理对象

是的,你可以利用c#的LINQ特性轻松做到这一点.......

就像

var students = new Student[]
        {
            new Student(82495, "Carlton", "Blanchard"),
            new Student(20935, "Charlotte", "O'Keefe"),
            new Student(79274, "Christine", "Burns"),
            new Student(79204, "Edward", "Swanson"),
            new Student(92804, "Charles", "Pressmann")
        };
        IEnumerable<Student> pupils = from studs
                                      in students  
                                      where stds.id = youridvaruabble/value
                                      select studs;

你想更具体地做什么?只是一个foreach?物体里面有什么?

foreach(var item in UserArray) { 
    if (item.Name == "Something") { Response.Write("Here he is!"); }
}