When I need to serialize things to a byte array I usually write the array to a MemoryStream first then use the binary formatter to serialize it to whatever (file, another byte array whatever).
The question I had was, can I just serialize a byte array instead of converting it to a memory stream and then back again?
The binary formatter says it needs a "stream" to serialize...is there another method?