class A
{
public string[] X {get;set;}
public string[] Y {get;set;}
}
class B
{
public string X {get;set;}
public string Y {get;set;}
}
Linqを使用してAのオブジェクトのデータをBの配列に転送しますか?AのオブジェクトのサイズがXとYが10〜10で、B配列に転送したいとします。(B[] b = new B[10])
A a = new A();
//put 10 items in both x and y
B[] b = new B[10];
//here I want to get a's data to b