1- How to smartly initialize an Array with 2 (or more) other arrays in C#?
double[] d1=new double[5];
double[] d2=new double[3];
double[] dTotal=new double[8];// I need this to be {d1 then d2}
2- Another question: How to concatenate C# arrays efficiently?
Thanks