JavaScriptSerializer oSerializer = new JavaScriptSerializer();
object i = 3;
string sJSON = oSerializer.Serialize(i); //"3"
The JavaScriptSerializer
should serialize its parameter to JSON!
And the result is "3" ( which is not JSON)
What am I missing?
edit
Ive written a mail to douglas crockford
3 is not a json object/text but json value.
so i think msdn should clarify the serialize method.
As has been said many times by different people, the output you are receiving is valid JSON.
From the JSON Specification (the Introduction):
and further (Section 2.1):
My interpretation of specification tells me that the case you describe here is more a JSON value than a JSON object.