mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
dbghelp.dll support!
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@1047 21ef857c-d57f-4fe0-8362-d861dc6d29cd
This commit is contained in:
@@ -6,13 +6,13 @@
|
||||
public class Singleton<T>
|
||||
where T : class, new()
|
||||
{
|
||||
private object _instanceLock = new object();
|
||||
private T _instance = null;
|
||||
private static object _instanceLock = new object();
|
||||
private static T _instance = null;
|
||||
|
||||
/// <summary>
|
||||
/// The single instance of the type.
|
||||
/// </summary>
|
||||
public T Instance
|
||||
public static T Instance
|
||||
{
|
||||
get
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user