public sealed partial class FPS : Microsoft.Xna.Framework.DrawableGameComponent
as opposed to the one that Visual studio creates for me:
public class FPS : Microsoft.Xna.Framework.DrawableGameComponent
The classes methods are also marked as sealed, Eg
public sealed override void Draw(GameTime gameTime) { }
So my question is what exactly is a "sealed partial class"?
Cheers all






