{"id":294,"date":"2020-10-14T12:11:42","date_gmt":"2020-10-14T06:41:42","guid":{"rendered":"http:\/\/sumitjangid.com\/?p=294"},"modified":"2020-10-14T12:11:42","modified_gmt":"2020-10-14T06:41:42","slug":"c-arrays-and-jagged-arrays","status":"publish","type":"post","link":"http:\/\/sumitjangid.com\/index.php\/2020\/10\/14\/c-arrays-and-jagged-arrays\/","title":{"rendered":"C# Arrays and Jagged Arrays"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>int&#91;] simplearray = new int&#91;3] {1,2,3 }; \/\/Sigle Dimension array\r\n            int&#91;,] multiarray = new int&#91;3, 3] { {1,2,3 },{ 4,5,6},{ 7,8,9} }; \/\/multi Dimension array\r\n            int&#91;]&#91;] arr = new int&#91;2]&#91;]; \/\/Jagged Array\r\n            arr&#91;0] = new int&#91;] {12,23 };\r\n            arr&#91;1] = new int&#91;] {122,22 };\r\n            foreach(var item in arr) \/\/Display jagged array\r\n            {\r\n                foreach(var subitem in item)\r\n                {\r\n                    Console.WriteLine(subitem);\r\n\r\n                }\r\n            }<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[3,4,2],"tags":[],"_links":{"self":[{"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/posts\/294"}],"collection":[{"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/comments?post=294"}],"version-history":[{"count":1,"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/posts\/294\/revisions"}],"predecessor-version":[{"id":295,"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/posts\/294\/revisions\/295"}],"wp:attachment":[{"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/media?parent=294"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/categories?post=294"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/tags?post=294"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}