You should do it like this:
public sealed class MySingleton { public static readonly MySingleton SharedInstance = new MySingleton (); private MySingleton () : base() { } }
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)