Chapter 10. Reading and writing files: Save the last byte for me!

Images

Sometimes it pays to be a little persistent.

So far, all of your programs have been pretty short-lived. They fire up, run for a while, and shut down. But that’s not always enough, especially when you’re dealing with important information. You need to be able to save your work. In this chapter, we’ll look at how to write data to a file, and then how to read that information back in from a file. You’ll learn about streams, and how to store your objects in files with serialization, and get down to the actual bits and bytes of hexadecimal, Unicode, and binary data

.NET uses streams to read and write data

A stream is the .NET Framework’s way of getting data into and out of your program. Any time your program reads or writes a file, connects to another computer over a network, or generally does anything where it sends or receives bytes, you’re using streams. Sometimes you’re using streams directly , other times indirectly. Even when you’re using classes that don’t directly expose streams, under the hood they’re almost always using streams.

Whenever you want to read data from a file or write data to a file, you’ll use a Stream object.

Note

Let’s say you have a simple app that needs to read data from a file. A really basic way to do that is to use a Stream object.

Note

And if your app needs to write data out to ...

Get Head First C#, 4th Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.