Skip to content

Instantly share code, notes, and snippets.

View spartawhy117's full-sized avatar

SpartaWHY117 spartawhy117

View GitHub Profile
@spartawhy117
spartawhy117 / SingletonTemplate.cs
Last active August 21, 2020 12:06
c# 设计模式
public class SingletonTemplate<T> where T : class, new()
{
private static T mSingleton;
public static T Singleton
{
get
{
if (mSingleton == null)
{