Convert byte array to list<byte> using Silverlight and C#
arrays, c#, list, silverlight, type-conversion
Solution
Simply:
List<byte> myBytes = new List<Byte>(byteArray);
Or using LINQ extensions:
List<byte> myBytes = byteArray.ToList();
Problem
How do I convert a `byte[]` array to a `list<byte>`? I am using the Silverlight framework only.