我有一堂课如下:
public class test
{
int i;
string str;
Socket s;
DateTime dt;
}
并且正在创建此类的对象,如下所示
public void collection()
{
test t1=new test{i=1,str="string1", s=soc1, dt=DateTime.Today() };
test t2=new test{i=2,str="string2", s=soc2, dt=DateTime.Today() };
test t3=new test{i=3,str="string3", s=soc3, dt=DateTime.Today() };
ArraList a=new ArrayList();
a.Add(t1);
a.Add(t2);
a.Add(t3);
}
并将所有这些对象(、、、)添加t1
到t2
数组t3
中。现在,如何使用 linq 获取对象数组中的所有套接字成员???