Related to this question encrypt binary with 7z without filenames?
In C# how can i put binary in STDin? i was hoping the below would work but it doesnt. And it makes sense. So how do i push a byte[] array?
new BinaryWriter(p.StandardInput.FormatProvider);
Write directly to the base stream:
new BinaryWriter(p.StandardInput.BaseStream)
2.1m questions
2.1m answers
60 comments
57.0k users