8 lines
172 B
C#
8 lines
172 B
C#
![]() |
namespace Utils
|
||
|
{
|
||
|
public class Singleton<T> where T : new()
|
||
|
{
|
||
|
private static T _instance;
|
||
|
public static T Instance => _instance ??= new T();
|
||
|
}
|
||
|
}
|