using System; using System.Collections.Generic; namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers { internal class WndProcHandlerCollection : List, IWndProcHandlerCollection { private static readonly Lazy _current = new(() => new WndProcHandlerCollection()); public static WndProcHandlerCollection Current => _current.Value; } }