I am having a problem with the following code.
byte[] array = data as byte[]; // compile error - unable to use built-in conversion if (array != null) { ...
I only want to assign the data to an array variable if the data is actually a byte array.
arrays c #
Stephen Price
source share