Saving Objects to a File

Project Name:	Task11_2.vbp
File Folder:	Ex11_2

	This sample project demonstrates a generic file processing class. This class stores any object data to a file. In this example, all of the tasks in the collection are stored in a simple binary file.
	The resulting application allows you to define a set of tasks in a to do list and save those tasks. When the application is run again, the tasks will be read from the file and displayed.
	For a challenge, try the following:
- Implementing the code to add the category to the file.
- Changing the file type to write the data to a sequential file that can be opened with a text editor.

