How to get type of TKey and TValue given a Dictionary<TKey,TValue> type
- by harsha
I want to get type of TKey and TValue given a Dictionary<TKey,TValue> type.
eg. If type is Dictionary<Int32,String> I want to know how to get
keyType = typeof(Int32) and
valueType = typeof(String)