How do I convert a byte[]
array to a list<byte>
?
I am using the Silverlight framework only.
Simply:
List<byte> myBytes = new List<Byte>(byteArray);
Or using LINQ extensions:
List<byte> myBytes = byteArray.ToList();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With