Hello,
I use fastJson in .Net 3.5 and am not allowed to switch to .net 4.0 (sql crl).
I would like to use the KeyValuePaar Collections and they are only supported in .net 4.0.
Why? Why such a restriction here?
private void WriteValue(object obj) {
…
if NET4
else if (_params.KVStyleStringDictionary == false &&
obj is IEnumerable<KeyValuePair<string, object>>)
WriteStringDictionary((IEnumerable<KeyValuePair<string, object>>)obj);
Hello, I use fastJson in .Net 3.5 and am not allowed to switch to .net 4.0 (sql crl). I would like to use the KeyValuePaar Collections and they are only supported in .net 4.0. Why? Why such a restriction here?
private void WriteValue(object obj) { …
if NET4
endif
… }