Надо обязательно посмотреть лучшие видео 2009 года вот отсюда:
http://www.vimeo.com/album/159627/
Блог о жизни в програмировании и о программировании в жизни от веб-девелопера. В основном платформа ASP.NET и все что с ней связано.
пятница, 19 февраля 2010 г.
How to convert Stream to byte array
It's pretty easy!
Code on C#:
Code on VB you can find here: http://snipplr.com/view/2012/stream-to-byte-array/
Code on C#:
- int length = Convert.ToInt32(inputStream.Length); // get strem length
- byte[] byteArr = new byte[length]; // create a byte array
- inputStream.Read(byteArr, 0, length);
- inputStream.Close();
* This source code was highlighted with Source Code Highlighter.
Code on VB you can find here: http://snipplr.com/view/2012/stream-to-byte-array/
Подписаться на:
Сообщения (Atom)