I have a byte array which contains double values. I want to convert It to double array. Is it possible in C#?
Byte array looks like:
byte[] bytes; //I receive It from socket
double[] doubles;//I want to extract values to here
I created a byte-array in this way (C++):
double *d; //Array of doubles
byte * b = (byte *) d; //Array of bytes which i send over socket