Files
OurUmbraco/NotificationsWeb/Singleton.cs
T
2015-02-17 10:39:39 +01:00

21 lines
423 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NotificationsWeb
{
public class Singleton<T> where T : class, new()
{
Singleton() { }
private static readonly Lazy<T> instance = new Lazy<T>(() => new T());
public static T UniqueInstance
{
get { return instance.Value; }
}
}
}