Great dreams... never even get out of the box. It takes an uncommon amount of guts to put your dreams on the line, to hold them up and say, "How good or how bad am I?" That's where courage comes in.
public static byte[] getFileContent(string fileUrl) { Stream stream1 = new FileStream(fileUrl, FileMode.Open, FileAccess.ReadWrite); byte[] buffer1 = new byte[stream1.Length]; stream1.Read(buffer1, 0, (int) stream1.Length); stream1.Close(); return buffer1; }
Powered by: Skin design by Mark Wagner, Adapted by David Vidmar Copyright © Gaurav Taneja