public SpriteFont Font
{
get { return font; }
set { font = value; }
}_
You can do: public SpriteFont Font, which will thus conserve memory (instead of having to create multiple variables to do the same thing) and reduce overhead and even increase application speed due to not having to create that many variables.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Instead of doing:
_
(private or protected) SpriteFont font;
public SpriteFont Font
{
get { return font; }
set { font = value; }
}_
You can do: public SpriteFont Font, which will thus conserve memory (instead of having to create multiple variables to do the same thing) and reduce overhead and even increase application speed due to not having to create that many variables.