私は以下のように1つのクラスを持っています:
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を使用してオブジェクト配列内のすべてのソケットメンバーを取得するにはどうすればよいですか???