Practicing and exploring
Test your knowledge and understanding by answering some questions, get some hands-on practice, and explore this chapter's topics with deeper research.
Exercise 9.1 – Test your knowledge
Answer the following questions:
- What is the difference between using the
File
class and theFileInfo
class? - What is the difference between the
ReadByte
method and theRead
method of a stream? - When would you use the
StringReader
,TextReader
, andStreamReader
classes? - What does the
DeflateStream
type do? - How many bytes per character does the UTF-8 encoding use?
- What is an object graph?
- What is the best serialization format to choose for minimizing space requirements?
- What is the best serialization format to choose for cross-platform compatibility?
- What library is best for working with the JSON serialization format?
- How many packages are available for serialization on NuGet.org?
Exercise 9.2 – Practice serializing as XML
Create a console application named Exercise02
that creates a list of shapes,...