【C#】Dictionary からランダムにキーや値を取得する拡張メソッド

ソースコード using System; using System.Collections.Generic; using System.Linq; public static class DictionaryExt { private static Random m_random; private static Random random => m_random ?? ( m_random = new Random() ); public static KeyValuePair<TKey, TValue> RandomAt<TKey, TValue> ( this Dictionary</tkey,></tkey,>