2010-03-10 Atsushi Enomoto * JsonReader.cs : moved to Sys.SM.Web/Sys.R.S.Json. 2010-03-10 Atsushi Enomoto * JsonValue.cs : use Sys.SM.Web.dll's JavaScriptObjectDeserializer for silverlight sdk / moonlight compatibility. * JsonReader.cs : renamed to JavaScriptReader (for disambiguation in Sys.SM.Web.dll). Now it is native-type based and used by the above deserializer. 2010-02-18 Atsushi Enomoto * JsonValue.cs : fix string escaping, it was giving wrong output after \" and \\. 2010-02-18 Atsushi Enomoto * JsonReader.cs : line endings after a value should not result in a parse error. * JsonObject.cs : duplicate object key "SHOULD" not be used, but they are not rejected. So, make it a bit sloppy. 2010-01-27 Atsushi Enomoto * JsonReader.cs : oops, added previous change to wrong position. 2010-01-27 Atsushi Enomoto * JsonReader.cs : It seems it can either return int, long or decimal depending on the value. Users cannot really predict what type of the primitive value can be returned and casts to specific types very likely fail. doh. 2010-01-27 Atsushi Enomoto * JsonReader.cs : use decimal instead of int to parse decimal part of numeric value. It can parse bigger value than int now (like tweet id). 2009-10-05 Atsushi Enomoto * JsonReader.cs : \uXXXX parser was totally wrong, giving wrong #. 2009-09-22 Atsushi Enomoto * JsonValue.cs, JsonReader.cs, JsonPrimitive.cs : Handle "null" values, as string, so far (haven't tried what .NET actually does). Fix array ToString() that missed commas (while Save() worked fine - it has different serialization logic). 2009-01-15 Atsushi Enomoto * JsonReader.cs : consume ',' between items in an array. 2008-09-15 Atsushi Enomoto * JsonObject.cs, JsonValue.cs : SL2b2 updates. 2008-08-28 Atsushi Enomoto * JsonReader.cs : a ReadChar() is missing in number parsing. 2008-06-10 Atsushi Enomoto * JsonArray.cs, JsonObject.cs, JsonPrimitive.cs, JsonReader.cs, JsonType.cs, JsonValue.cs, MergedEnumerator.cs : initial checkin.