如下:

sealed class Singleton
{
    Singleton() { }
    public static readonly Singleton Instance = new Singleton();
}

 

相关文章: