I tried to use the List.ConvertAll method and failed. What I am trying to do is convert a List<Int32> to byte[]
I copped out and went this route, but I need to figure out the ConvertAll method...
List<Int32> integers...
internal byte[] GetBytes()
{
    List<byte> bytes = new List<byte>(integers.Count * sizeof(byte));
    foreach (Int32 integer in integers)
        bytes.AddRange(BitConverter.GetBytes(integer));
    return bytes.ToArray();
}
                Since you don't want a byte[][] where each integer maps to an array of four bytes, you cannot call ConvertAll.  (ConvertAll cannot perform a one-to-many conversion)
Instead, you need to call the LINQ SelectMany method to flatten each byte array from GetBytes into a single byte[]:
integers.SelectMany(BitConverter.GetBytes).ToArray()
                        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