One of the many ways to do it (a LINQ one):
var originalList = Enumerable.Range(0, bytes.Length / 4)
.Select(i => BitConverter.ToInt32(bytes, i * 4))
.ToList();
Minor update:
You can also write a handy generic version of this (just in case you'll need to work with other types):
static List<T> ToListOf<T>(byte[] array, Func<byte[], int, T> bitConverter)
{
var size = Marshal.SizeOf(typeof(T));
return Enumerable.Range(0, array.Length / size)
.Select(i => bitConverter(array, i * size))
.ToList();
}
Usage:
var originalList = ToListOf<int>(bytes, BitConverter.ToInt32);