diff --git a/src/BizHawk.Common/QuickCollections.cs b/src/BizHawk.Common/QuickCollections.cs index fbba5cd383..d60a79af46 100644 --- a/src/BizHawk.Common/QuickCollections.cs +++ b/src/BizHawk.Common/QuickCollections.cs @@ -1,7 +1,6 @@ #nullable disable using System; -using System.Collections.Generic; namespace BizHawk.Common { @@ -110,90 +109,4 @@ namespace BizHawk.Common size = count; } } - - // .net has no built-in read only dictionary - public sealed class ReadOnlyDictionary : IDictionary - { - private readonly IDictionary dict; - - public ReadOnlyDictionary(IDictionary dictionary) - { - dict = dictionary; - } - - /// always - public void Add(TKey key, TValue value) - { - throw new InvalidOperationException(); - } - - public bool ContainsKey(TKey key) - { - return dict.ContainsKey(key); - } - - public ICollection Keys => dict.Keys; - - /// always - public bool Remove(TKey key) - { - throw new InvalidOperationException(); - } - - public bool TryGetValue(TKey key, out TValue value) - { - return dict.TryGetValue(key, out value); - } - - public ICollection Values => dict.Values; - - /// (from setter) always - public TValue this[TKey key] - { - get => dict[key]; - set => throw new InvalidOperationException(); - } - - /// always - public void Add(KeyValuePair item) - { - throw new InvalidOperationException(); - } - - /// always - public void Clear() - { - throw new InvalidOperationException(); - } - - public bool Contains(KeyValuePair item) - { - return dict.Contains(item); - } - - public void CopyTo(KeyValuePair[] array, int arrayIndex) - { - dict.CopyTo(array, arrayIndex); - } - - public int Count => dict.Count; - - public bool IsReadOnly => true; - - /// always - public bool Remove(KeyValuePair item) - { - throw new InvalidOperationException(); - } - - public IEnumerator> GetEnumerator() - { - return dict.GetEnumerator(); - } - - System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() - { - return ((System.Collections.IEnumerable)dict).GetEnumerator(); - } - } } \ No newline at end of file diff --git a/src/BizHawk.Emulation.Common/Database/GameInfo.cs b/src/BizHawk.Emulation.Common/Database/GameInfo.cs index 52ab119390..19a585a8cc 100644 --- a/src/BizHawk.Emulation.Common/Database/GameInfo.cs +++ b/src/BizHawk.Emulation.Common/Database/GameInfo.cs @@ -1,9 +1,8 @@ using System.Collections.Generic; +using System.Collections.ObjectModel; using System.Linq; using System.Globalization; -using BizHawk.Common; - namespace BizHawk.Emulation.Common { public interface IGameInfo @@ -146,7 +145,7 @@ namespace BizHawk.Emulation.Common return defaultVal; } - public IDictionary GetOptionsDict() + public IReadOnlyDictionary GetOptionsDict() { return new ReadOnlyDictionary(Options); }