所以我正在使用这个库用于C#,我是一个php开发人员,当我通过使用以下内容获得用户列表时:http://help.globalscape.com/help/eft5_com/Retrieving_a_list_of_users.htm
我得到一个对象,现在在php中我只是 - >闯入这个对象然后foreach循环遍历所有数组元素以检查用户是否存在,但我不确定如何在c#中执行此操作,任何人都可以帮助我。
答案 0 :(得分:2)
是的,你可以利用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;
答案 1 :(得分:0)
你想更具体地做什么?只是一个foreach?对象中有什么?
foreach(var item in UserArray) {
if (item.Name == "Something") { Response.Write("Here he is!"); }
}