How do I convert a double[] array to a byte[] array and vice versa?
double[]
byte[]
class Program { static void Main(string[] args) {
You should use Buffer.BlockCopy method.
Look at the pages example, you will clearly understand.
doubleArray = byteArray.Select(n => {return Convert.ToDouble(n);}).ToArray();