Joël Langlois - 2010-04-17

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.