其他分享
首页 > 其他分享> > 单件模式

单件模式

作者:互联网

#region 单件模式

private static readonly Lazy<Class1> Instance = new Lazy<Class1>(() => new Class1());

private Class1()
{
//TODO: 在这里填写需要初始化的代码
}
public static Class1 Current => Instance.Value;

#endregion

标签:Lazy,单件,private,Instance,static,模式,new,Class1
来源: https://www.cnblogs.com/sediment/p/10464068.html