I was just going to use the FileUpload.FileBytes property but looking into the respective example in the MSDN library I'm confused about this part:
int fileLen;
// Get the length of the file.
fileLen = FileUpload1.PostedFile.ContentLength;
// Create a byte array to hold the contents of the file.
byte[] input = new byte[fileLen - 1];
input = FileUpload1.FileBytes;
(from here, I've omitted a few unimportant lines)
The new
in this code looks for me like food for the garbage collector with no use. (Possibly big food if the file is large.) Why don't they simply write:
byte[] input = FileUpload1.FileBytes;
I am too new to .NET and C# to be brave enough to declare this simply as superfluous or a bad written example. Does it have any purpose (perhaps a performance benefit or so)? (Also I don't understand why they subtract 1 from fileLen
.)