Re: [DOTNET] Byte array to disk

2002-05-29 Thread David B. Bitton
thanks. actually, when i said quickest, i just meant least amount of code. ha. thanks. -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh DailyT - Original Message - From: "Axel Heitland" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 29, 2002 11:

Re: [DOTNET] Byte array to disk

2002-05-29 Thread Axel Heitland
Don't know if this is the fastest, but FileStream.Write(bytearray, offset, count ) will do a good job. If the array is beyond 64KB you could use asynch-io with BeginWrite. HTH Axel -Original Message- From: David B. Bitton [mailto:[EMAIL PROTECTED]] Sent: Mittwoch, 29. M

Re: [DOTNET] Byte array to disk

2002-05-29 Thread Graeme Foster
Create a System.IO.FileStream and use the Write() method which takes a byte array. G. -- Graeme Foster ([EMAIL PROTECTED]) Principal Software Engineer Aston Broadcast Systems Ltd. (http://www.aston.tv) Disclaimer: I really don't have a clue what I'm on about. -Original Message- From: dot