您的位置:首页 > 其它

[学习日记] Steam and I/O Architecture

2009-09-02 16:33 162 查看
The most fundamental types for input and output int the .NET. These types int the System.IO namespace, the home of lower-level I/o functionality.
The .NET steam architecture centers on three concepts : backing stores, decoratiors, and adapters. as the following Figure..jpg]



Steams fall into two categories:

Backing store streams

These are hard-wired to a particular type of backing store, such as FileStream or NetworkStream

Decorator streams

These feed off another stream, transforming the data in some way, such as DeflateStream or CryptoStream
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: