System.Data.Linq.Binary contains an array of bytes. You can use it directly as follows:
Binary binary =
If you must have a BinaryReader in a byte array, you can wrap it as follows:
BinaryReader reader = new BinaryReader(new MemoryStream(binary.ToArray()));
source share