Hello,

I am using the streamWriter/streamReader to save my last settings to a text file and then load from the text file on startup. How do I save the last font settings and recall them from the text file?

I am doing this (below) to save the font info:

sw.WriteLine(myFont.ToString());

...but I am not sure if this is what I should be doing OR how to load it back in as my font using the streamReader.

Thanks!