Byte[] to ASCII

The Mask picture The Mask · Jul 2, 2011 · Viewed 126.9k times · Source

I received the contents of a text file returned in binary values:

Byte[] buf = new Byte[size];
stream = File.InputStream;
stream.Read(buf, 0, size);

How can I convert this to ASCII?