Modified:
/src/Jayrock.Json/Json/Conversion/ImportContext.cs
=======================================
--- /src/Jayrock.Json/Json/Conversion/ImportContext.cs Tue Apr 19 17:35:06
2011
+++ /src/Jayrock.Json/Json/Conversion/ImportContext.cs Tue Apr 19 18:51:59
2011
@@ -155,7 +155,7 @@
Type genericDictionaryType =
Reflector.FindConstructionOfGenericInterfaceDefinition(type,
typeof(IDictionary<,>));
if (genericDictionaryType != null)
{
- var args2 = genericDictionaryType.GetGenericArguments();
+ Type[] args2 = genericDictionaryType.GetGenericArguments();
Debug.Assert(args2.Length == 2);
Type[] args3 = new Type[3];
args3[0] = type; // [ TDictionary, ... , ... ]