How do I convert a double[] array to a byte[] array and vice versa?
double[]
byte[]
class Program { static void Main(string[] args) {
You can use something like this, I think:
byte[] byteArray = new byteArray[...]; ... byteArray.SetValue(Convert.ToByte(d), index);