C# FileStreamC# FileStream class provides a stream for file operation. It can be used to perform synchronous and asynchronous read and write operations. By the help of FileStream class, we can easily read and write data into file. C# FileStream example: writing single byte into fileLet's see the simple example of FileStream class to write single byte of data into file. Here, we are using OpenOrCreate file mode which can be used for read and write operations. Output: A C# FileStream example: writing multiple bytes into fileLet's see another example to write multiple bytes of data into file using loop. Output: ABCDEFGHIJKLMNOPQRSTUVWXYZ C# FileStream example: reading all bytes from fileLet's see the example of FileStream class to read data from the file. Here, ReadByte() method of FileStream class returns single byte. To all read all the bytes, you need to use loop. Output: ABCDEFGHIJKLMNOPQRSTUVWXYZ Next TopicC# StreamWriter |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India