Английская Википедия:File and stream I/O in C Sharp

Материал из Онлайн справочника
Версия от 15:27, 7 марта 2024; EducationBot (обсуждение | вклад) (Новая страница: «{{Английская Википедия/Панель перехода}} {{Correct title|File and stream I/O in C#|reason=number}} {{more citations needed|date=February 2014}} {{Orphan|date=December 2015}} The C# programming language provides many classes and methods to perform file and stream input and output. The most common stream...»)
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)
Перейти к навигацииПерейти к поиску

Шаблон:Correct title Шаблон:More citations needed Шаблон:Orphan

The C# programming language provides many classes and methods to perform file and stream input and output.

The most common stream classes used for file and stream I/O within the .NET Framework are listed below:

Class Function
FileStream Reading and writing to a standard file
IsolatedStorageFileStream Reading and writing to a file in isolated storageШаблон:Clarify
MemoryStream Reading and writing to memory modeled as a stream
BufferedStream Reading and writing to a stream using buffered I/O for improved thread performance
NetworkStream Reading and writing to network sockets
PipeStream Reading and writing over anonymous and named pipes
CryptoStream Linking data streams to cryptographic transformations

References


Шаблон:Compu-prog-stub