这里记录一种最简单的写法:
public class Singleton { private Singleton(){} public static readonly Singleton Instance = new Singleton(); }