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]; 
 }
link|improve this question

Is it possible to switch to C# 3.0? If so, use ToArray method, if not, go with good old "create an array, copy values in foreach loop" approach – Dyppl May 25 '11 at 3:38
2  
@Dyppl: ToArray is available for List<> in 2.0. Switching to 3.0 for this isn't necessary. Besides, one would not switch frameworks for a single convenience feature. – Paul Sasik May 25 '11 at 3:41
@Paul Sasik: you're right, I totally forgot about that and was sure that people refer to the LINQ extension method. Thanks! – Dyppl May 25 '11 at 4:02
1  
Remember that List and IList have different methods and IList does not have ToArray()... – Random May 25 '11 at 4:44
1  
Personally, for working with binary data I would suggest MemoryStream over List<byte>. Then you can use GetBuffer() to access the oversized backing-buffer without an additional allocation; you just need to remember to only read .Length bytes from it ;p – Marc Gravell May 25 '11 at 6:11
feedback

6 Answers

up vote 11 down vote accepted
myArrayByte = myListByte.ToArray();
link|improve this answer
feedback
List<byte> bytes = ...;

byte[] bArrary = bytes.ToArray();
link|improve this answer
feedback

Use the List object's ToArray method.

link|improve this answer
feedback
byte[] arr = myListByte.ToArray();
link|improve this answer
feedback

Is this what you are looking for:

private void convertByteArray()
        {
            List<byte> byteList = new List<byte>() { 2, 3, 4 };
            byte[] byteArray = byteList.ToArray<byte>();
        }
link|improve this answer
feedback
 byte[] converted = myListByte.ToArray();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.