Thought I could use the BinaryWriter but haven't had any luck. Suggestions?
Asked
Active
Viewed 3,277 times
1 Answers
11
You need an instance of a Stream derived class to provide the Stream implementation. MemoryStream is the ticket:
var stream = new MemoryStream(bin.ToArray());
where "bin" is your Binary instance.

Hans Passant
- 922,412
- 146
- 1,693
- 2,536