mirror of
https://github.com/soarqin/DSP_Mods_TO.git
synced 2025-12-18 12:33:28 +08:00
add XianTu
This commit is contained in:
21
XianTu/Singleton.cs
Normal file
21
XianTu/Singleton.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
|
||||
namespace XianTu;
|
||||
|
||||
public class Singleton<T> where T : new()
|
||||
{
|
||||
public static T Instance
|
||||
{
|
||||
get
|
||||
{
|
||||
var flag = _msInstance == null;
|
||||
if (flag)
|
||||
{
|
||||
_msInstance = new T();
|
||||
}
|
||||
return _msInstance;
|
||||
}
|
||||
}
|
||||
|
||||
private static T _msInstance;
|
||||
}
|
||||
Reference in New Issue
Block a user