Files
modernkeepass/ModernKeePass/Services/SingletonServiceBase.cs
BONNEVILLE Geoffroy d6765904a1 Slider control now uses Accent Color
ComboBox enter key now uses Accent Color
Some code cleanup
Updated release notes
2018-07-24 16:26:58 +02:00

13 lines
285 B
C#

using System;
namespace ModernKeePass.Services
{
public abstract class SingletonServiceBase<T> where T : new()
{
private static readonly Lazy<T> LazyInstance =
new Lazy<T>(() => new T());
public static T Instance => LazyInstance.Value;
}
}