У меня есть экземпляр, который реализует IDictionary<T, K>
, я не знаю T и K во время компиляции и хочу получить все элементы из него. Я не хочу по какой-то причине использовать IEnumerable
, который будет единственным неуниверсальным интерфейсом, реализованным IDictionary
.
Код, который у меня пока есть:
// getting types
Type iDictType = instance.GetType().GetInterface("IDictionary`2");
Type keyType = iDictType.GetGenericArguments()[0];
Type valueType = iDictType.GetGenericArguments()[1];
// getting the keys
IEnumerable keys = (IEnumerable)dictType.GetProperty("Keys")
.GetValue(instance, null);
foreach (object key in keys)
{
// ==> this does not work: calling the [] operator
object value = dictType.GetProperty("Item")
.GetValue(instance, new object[] {key } );
// getting the value from another instance with TryGet
MethodInfo tryGetValue = iDictType.GetMethod("TryGetValue");
object[] arguments = new object[] { key, null };
bool hasElement = (bool)tryGetValue.Invoke(otherInstance, arguments);
object anotherValue = arguments[1];
}
Я мог бы также вызвать TryGetValue, но я думаю, что должна быть возможность вызвать оператор []. Кто-нибудь может мне помочь?