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 的对象有 10-10 大小的 X 和 Y,我想转移到 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