{"id":406,"date":"2016-09-27T10:08:58","date_gmt":"2016-09-27T07:08:58","guid":{"rendered":"https:\/\/burakcaliskan.org\/blog\/?p=406"},"modified":"2016-09-27T10:08:58","modified_gmt":"2016-09-27T07:08:58","slug":"c-json-string","status":"publish","type":"post","link":"https:\/\/burakcaliskan.org\/blog\/c-json-string\/","title":{"rendered":"C# JSON String"},"content":{"rendered":"<p>http:\/\/www.newtonsoft.com\/json<\/p>\n<p>http:\/\/james.newtonking.com\/pages\/json-net.aspx<\/p>\n<p><strong>Visual Studio 2015<\/strong>\u00a0 \u00a0 PM &gt;\u00a0Install-Package Newtonsoft.Json<\/p>\n<pre class=\"lang:default decode:true \">string json = @\"{\r\n  \"\"Name\"\": \"\"Apple\"\",\r\n  \"\"Expiry\"\": new Date(1230422400000),\r\n  \"\"Price\"\": 3.99,\r\n  \"\"Sizes\"\": [\r\n    \"\"Small\"\",\r\n    \"\"Medium\"\",\r\n    \"\"Large\"\"\r\n  ]\r\n}\";\r\n\r\nJObject o = JObject.Parse(json);\r\n\r\nstring name = (string)o[\"Name\"];\r\n\/\/ Apple\r\n\r\nJArray sizes = (JArray)o[\"Sizes\"];\r\n\r\nstring smallest = (string)sizes[0];\r\n\/\/ Small<\/pre>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>http:\/\/www.newtonsoft.com\/json http:\/\/james.newtonking.com\/pages\/json-net.aspx Visual Studio 2015\u00a0 \u00a0 PM &gt;\u00a0Install-Package Newtonsoft.Json string json = @&#8221;{ &#8220;&#8221;Name&#8221;&#8221;: &#8220;&#8221;Apple&#8221;&#8221;, &#8220;&#8221;Expiry&#8221;&#8221;: new Date(1230422400000), &#8220;&#8221;Price&#8221;&#8221;: 3.99, &#8220;&#8221;Sizes&#8221;&#8221;: [ &#8220;&#8221;Small&#8221;&#8221;, &#8220;&#8221;Medium&#8221;&#8221;, &#8220;&#8221;Large&#8221;&#8221; ] }&#8221;; JObject o = JObject.Parse(json); string name = (string)o[&#8220;Name&#8221;]; \/\/ Apple JArray sizes = (JArray)o[&#8220;Sizes&#8221;]; string smallest = (string)sizes[0]; \/\/ Small &nbsp;<\/p>\n","protected":false},"author":2,"featured_media":337,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[23],"tags":[205,241,238,203,207],"_links":{"self":[{"href":"https:\/\/burakcaliskan.org\/blog\/wp-json\/wp\/v2\/posts\/406"}],"collection":[{"href":"https:\/\/burakcaliskan.org\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/burakcaliskan.org\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/burakcaliskan.org\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/burakcaliskan.org\/blog\/wp-json\/wp\/v2\/comments?post=406"}],"version-history":[{"count":1,"href":"https:\/\/burakcaliskan.org\/blog\/wp-json\/wp\/v2\/posts\/406\/revisions"}],"predecessor-version":[{"id":407,"href":"https:\/\/burakcaliskan.org\/blog\/wp-json\/wp\/v2\/posts\/406\/revisions\/407"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/burakcaliskan.org\/blog\/wp-json\/wp\/v2\/media\/337"}],"wp:attachment":[{"href":"https:\/\/burakcaliskan.org\/blog\/wp-json\/wp\/v2\/media?parent=406"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/burakcaliskan.org\/blog\/wp-json\/wp\/v2\/categories?post=406"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/burakcaliskan.org\/blog\/wp-json\/wp\/v2\/tags?post=406"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}