Can I convert via the for Loop?
Is there any better method to do it?
for (int i = 0; i < myListByte.Count ;i++)
{
myArryByte[i] = myListByte[i];
}
|
Use the List object's ToArray method. |
|||
|
|
|
Is this what you are looking for:
|
|||
|
|
ToArraymethod, if not, go with good old "create an array, copy values in foreach loop" approach – Dyppl May 25 '11 at 3:38MemoryStreamoverList<byte>. Then you can useGetBuffer()to access the oversized backing-buffer without an additional allocation; you just need to remember to only read.Lengthbytes from it ;p – Marc Gravell♦ May 25 '11 at 6:11