Stream speed

R

Roshawn Dawson

Hi,

How fast and efficient are streams in the .NET Framework? Do they
consume large amounts of server resources (cpu usage, memory, etc.)?

Thanks,
Roshawn
 
L

Lloyd Dupont

I don't know... :-(
But I do know that using a BufferedStream could, sometimes, speed up things
a little...
 
L

Lloyd Dupont

BTW, many low level stream (SocketStrem, PipeStream, FileStream, etc...)
Are just thin wrapper over a file's HANDLE & Win32 ReadFile()/WriteFile()
API, so they consume as much and are as efficient as those.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top