using System.Collections.Generic; namespace ScreenConnect; public static class EmptyDictionary where TKey : notnull { public static readonly IDictionary Instance = new object[0].ToDictionary((object it) => default(TKey), (object it) => default(TValue)); }