开发者

asp:FileUpload.FileBytes example in MSDN confusing

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.)


The code samples from MSDN do vary in quality, and this is a good example of a bad coding sample.

As you say, it is easier to simply write:

byte[] input = FileUpload1.FileBytes;

And there is an error with the length of the byte array - no reason to subtract 1 from the posted length.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜