I've seen some answers to this question posted, but nothing exactly like what I am struggling with, and I'm having some trouble.
Basically, I am using an API that returns data in a byte array like so:
byte[] file = Api.getZippedReport(blah, blah);
I'm trying to figure out the best way to spit out the contents of the tab delimited file in C# so I can do something with it.
What is the simplest way to just get the data back so I can use it without actually having to save the file?