Fixing SimplSharp build

This commit is contained in:
Chris Cameron
2018-02-16 13:36:09 -05:00
parent 220f746d21
commit e308259a44

View File

@@ -241,7 +241,7 @@ namespace ICD.Common.Utils.Extensions
while (reader.TokenType != JsonToken.EndObject)
{
TKey key = (TKey)Convert.ChangeType(reader.Value, typeof(TKey));
TKey key = (TKey)Convert.ChangeType(reader.Value, typeof(TKey), null);
// Step into the value
reader.Read();