blah blah blah is here! blah blah » Close

0
votes
1 answers

How to Pass bytearray as ref byte srcbuff C#

The input that i have is a byte array containing bytes of an image e.g. byte[] byteData; string fileName = @"C:\pic3.jp2"; FileStream fs = new FileStream(fileName, FileMode.Open, FileAccess.Read); BinaryReader br = ...

Feedback