<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to JSONObject</title><link>https://sourceforge.net/p/jsonlib/wiki/JSONObject/</link><description>Recent changes to JSONObject</description><atom:link href="https://sourceforge.net/p/jsonlib/wiki/JSONObject/feed" rel="self"/><language>en</language><lastBuildDate>Wed, 25 Sep 2013 08:37:02 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/jsonlib/wiki/JSONObject/feed" rel="self" type="application/rss+xml"/><item><title>JSONObject modified by Elvedin Hamzagic</title><link>https://sourceforge.net/p/jsonlib/wiki/JSONObject/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v17
+++ v18
@@ -22,7 +22,7 @@
 -------------|--------------
 public bool **Remove**(String key) | *Removes entry associated with specified key and returns true if entry is found.*
 public IEnumerator&gt; **GetEnumerator**() | *Returns an enumerator that iterates through JSONObject.*
-public override String **ToString**() | *Overrides ToString method and return JSON string representation of this instance.*
+public override String **ToString**() | *Overrides ToString method and returns JSON string representation of this instance.*
 public static JSONObject **Parse**(String data) | *Parses JSON string and returns newly created JSONObject instance, or null if input string is not a valid JSON.*

 - *Operators*
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Elvedin Hamzagic</dc:creator><pubDate>Wed, 25 Sep 2013 08:37:02 -0000</pubDate><guid>https://sourceforge.net623adb351115cedded7ae8200570cea1e0ca59e5</guid></item><item><title>JSONObject modified by Elvedin Hamzagic</title><link>https://sourceforge.net/p/jsonlib/wiki/JSONObject/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v16
+++ v17
@@ -1,4 +1,4 @@
-*Represents a collection of key/value pairs.*
+*Represents an unordered collection of key/value pairs.*

 *Implements interface* **IEnumerable\&gt;**.

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Elvedin Hamzagic</dc:creator><pubDate>Tue, 24 Sep 2013 14:45:14 -0000</pubDate><guid>https://sourceforge.net200d6c8f506e271b8689d028cbb059eba4166c5f</guid></item><item><title>JSONObject modified by Elvedin Hamzagic</title><link>https://sourceforge.net/p/jsonlib/wiki/JSONObject/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v15
+++ v16
@@ -29,5 +29,5 @@

 *Definition* | *Description*
 -------------|--------------
-public static implicit operator **String**(JSONObject value) | *Returns the same value as ToString method.*
-public static implicit operator **JSONObject**(String value) | *Returns the same value as Parse method.*
+public static implicit operator **String**(JSONObject value) | *Creates string representation of JSONObject by calling ToString method.*
+public static implicit operator **JSONObject**(String value) | *Creates JSONObject from JSON string by calling Parse method.*
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Elvedin Hamzagic</dc:creator><pubDate>Tue, 24 Sep 2013 13:36:25 -0000</pubDate><guid>https://sourceforge.netcca7e9876bb4c11e994c9ca650bb1becc4bdcc07</guid></item><item><title>JSONObject modified by Elvedin Hamzagic</title><link>https://sourceforge.net/p/jsonlib/wiki/JSONObject/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v14
+++ v15
@@ -26,6 +26,7 @@
 public static JSONObject **Parse**(String data) | *Parses JSON string and returns newly created JSONObject instance, or null if input string is not a valid JSON.*

 - *Operators*
+
 *Definition* | *Description*
 -------------|--------------
 public static implicit operator **String**(JSONObject value) | *Returns the same value as ToString method.*
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Elvedin Hamzagic</dc:creator><pubDate>Tue, 24 Sep 2013 13:34:12 -0000</pubDate><guid>https://sourceforge.net1ab263dd849878cb3617e4e6b29e7d8cc1953a87</guid></item><item><title>JSONObject modified by Elvedin Hamzagic</title><link>https://sourceforge.net/p/jsonlib/wiki/JSONObject/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v13
+++ v14
@@ -5,22 +5,28 @@
 - *Constructors*

 *Definition* | *Description*
------------------------------------|---------------------------------------------------------------------
+-------------|--------------
 public JSONObject(Object\[,\] data) | *Creates JSONObject from double array. It has to be an array of array of two elements, first element represents a key and has to be a String, and second value, which can be of any type.*
 public JSONObject(Dictionary data) | *Creates JSONObject by assigning keys and values from Dictionary.*

 - *Properties*

 *Definition* | *Description*
------------------------------------|---------------------------------------------------------------------
+-------------|--------------
 public Int32 **Count** | Gets the number of entries.
 public JSONValue **this**\[String key\] | Gets or set the value associated with the given key.

 - *Methods*

 *Definition* | *Description*
------------------------------------|---------------------------------------------------------------------
+-------------|--------------
 public bool **Remove**(String key) | *Removes entry associated with specified key and returns true if entry is found.*
 public IEnumerator&gt; **GetEnumerator**() | *Returns an enumerator that iterates through JSONObject.*
 public override String **ToString**() | *Overrides ToString method and return JSON string representation of this instance.*
 public static JSONObject **Parse**(String data) | *Parses JSON string and returns newly created JSONObject instance, or null if input string is not a valid JSON.*
+
+- *Operators*
+*Definition* | *Description*
+-------------|--------------
+public static implicit operator **String**(JSONObject value) | *Returns the same value as ToString method.*
+public static implicit operator **JSONObject**(String value) | *Returns the same value as Parse method.*
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Elvedin Hamzagic</dc:creator><pubDate>Tue, 24 Sep 2013 13:33:52 -0000</pubDate><guid>https://sourceforge.net274d27a1f684b82be0d9e435e6013cd104e0a32e</guid></item><item><title>JSONObject modified by Elvedin Hamzagic</title><link>https://sourceforge.net/p/jsonlib/wiki/JSONObject/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v12
+++ v13
@@ -23,4 +23,4 @@
 public bool **Remove**(String key) | *Removes entry associated with specified key and returns true if entry is found.*
 public IEnumerator&gt; **GetEnumerator**() | *Returns an enumerator that iterates through JSONObject.*
 public override String **ToString**() | *Overrides ToString method and return JSON string representation of this instance.*
-public static JSONObject **Parse**(String data) | *Parses JSON string and returns newly created JSONObject instance, or null if input string is not a valid JSON string.*
+public static JSONObject **Parse**(String data) | *Parses JSON string and returns newly created JSONObject instance, or null if input string is not a valid JSON.*
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Elvedin Hamzagic</dc:creator><pubDate>Tue, 24 Sep 2013 13:25:53 -0000</pubDate><guid>https://sourceforge.net62f4e84a2fc002c4d2d577c613c4b5d8247363b4</guid></item><item><title>JSONObject modified by Elvedin Hamzagic</title><link>https://sourceforge.net/p/jsonlib/wiki/JSONObject/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v11
+++ v12
@@ -14,7 +14,7 @@
 *Definition* | *Description*
 -----------------------------------|---------------------------------------------------------------------
 public Int32 **Count** | Gets the number of entries.
-public JSONValue **this**[String key] | Gets or set the value associated with the given key.
+public JSONValue **this**\[String key\] | Gets or set the value associated with the given key.

 - *Methods*

@@ -22,5 +22,5 @@
 -----------------------------------|---------------------------------------------------------------------
 public bool **Remove**(String key) | *Removes entry associated with specified key and returns true if entry is found.*
 public IEnumerator&gt; **GetEnumerator**() | *Returns an enumerator that iterates through JSONObject.*
-public override String ToString() | *Overrides ToString method and return JSON string representation of this instance.*
-public static JSONObject Parse(String data) | *Parses JSON string and returns newly created JSONObject instance, or null if input string is not a valid JSON string.*
+public override String **ToString**() | *Overrides ToString method and return JSON string representation of this instance.*
+public static JSONObject **Parse**(String data) | *Parses JSON string and returns newly created JSONObject instance, or null if input string is not a valid JSON string.*
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Elvedin Hamzagic</dc:creator><pubDate>Tue, 24 Sep 2013 13:25:18 -0000</pubDate><guid>https://sourceforge.netc3937a2b7585c992ab4d21efa6de7ac5952690a0</guid></item><item><title>JSONObject modified by Elvedin Hamzagic</title><link>https://sourceforge.net/p/jsonlib/wiki/JSONObject/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v10
+++ v11
@@ -6,7 +6,7 @@

 *Definition* | *Description*
 -----------------------------------|---------------------------------------------------------------------
-public JSONObject(Object\[,\] data) | *Creates JSONObject from double array. It has to be an array of array of two elements, first element represents a key and has to be String, and second value, which can be of any type.*
+public JSONObject(Object\[,\] data) | *Creates JSONObject from double array. It has to be an array of array of two elements, first element represents a key and has to be a String, and second value, which can be of any type.*
 public JSONObject(Dictionary data) | *Creates JSONObject by assigning keys and values from Dictionary.*

 - *Properties*
@@ -22,3 +22,5 @@
 -----------------------------------|---------------------------------------------------------------------
 public bool **Remove**(String key) | *Removes entry associated with specified key and returns true if entry is found.*
 public IEnumerator&gt; **GetEnumerator**() | *Returns an enumerator that iterates through JSONObject.*
+public override String ToString() | *Overrides ToString method and return JSON string representation of this instance.*
+public static JSONObject Parse(String data) | *Parses JSON string and returns newly created JSONObject instance, or null if input string is not a valid JSON string.*
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Elvedin Hamzagic</dc:creator><pubDate>Tue, 24 Sep 2013 13:24:04 -0000</pubDate><guid>https://sourceforge.net215d6711ce0852dda9de148e3ddf9d019636d3ac</guid></item><item><title>JSONObject modified by Elvedin Hamzagic</title><link>https://sourceforge.net/p/jsonlib/wiki/JSONObject/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v9
+++ v10
@@ -1,25 +1,24 @@
-Represents a collection of key/value pairs.
+*Represents a collection of key/value pairs.*

-Implements interface
-    **IEnumerable\&gt;**.
+*Implements interface* **IEnumerable\&gt;**.

-- Constructors
+- *Constructors*

-Definition                         | Description
+*Definition* | *Description*
 -----------------------------------|---------------------------------------------------------------------
-public JSONObject(Object\[,\] data) | Creates JSONObject from double array. It has to be an array of array of two elements, first element represents a key and has to be String, and second value, which can be of any type.
-public JSONObject(Dictionary data) | Creates JSONObject by assigning keys and values from Dictionary.
+public JSONObject(Object\[,\] data) | *Creates JSONObject from double array. It has to be an array of array of two elements, first element represents a key and has to be String, and second value, which can be of any type.*
+public JSONObject(Dictionary data) | *Creates JSONObject by assigning keys and values from Dictionary.*

-- Properties
+- *Properties*

-Definition                         | Description
+*Definition* | *Description*
 -----------------------------------|---------------------------------------------------------------------
 public Int32 **Count** | Gets the number of entries.
 public JSONValue **this**[String key] | Gets or set the value associated with the given key.

-- Methods
+- *Methods*

-Definition                         | Description
+*Definition* | *Description*
 -----------------------------------|---------------------------------------------------------------------
-public bool **Remove**(String key) | Removes entry associated with specified key and returns true if entry is found.
-public IEnumerator&gt; **GetEnumerator**() | Returns an enumerator that iterates through JSONObject.
+public bool **Remove**(String key) | *Removes entry associated with specified key and returns true if entry is found.*
+public IEnumerator&gt; **GetEnumerator**() | *Returns an enumerator that iterates through JSONObject.*
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Elvedin Hamzagic</dc:creator><pubDate>Tue, 24 Sep 2013 13:17:19 -0000</pubDate><guid>https://sourceforge.net6ba2eeea812eac894c1e58001e358456c4d28afc</guid></item><item><title>JSONObject modified by Elvedin Hamzagic</title><link>https://sourceforge.net/p/jsonlib/wiki/JSONObject/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v8
+++ v9
@@ -6,21 +6,20 @@
 - Constructors

 Definition                         | Description
-----------------------------------|---------------------------------------------------------------------
+-----------------------------------|---------------------------------------------------------------------
 public JSONObject(Object\[,\] data) | Creates JSONObject from double array. It has to be an array of array of two elements, first element represents a key and has to be String, and second value, which can be of any type.
 public JSONObject(Dictionary data) | Creates JSONObject by assigning keys and values from Dictionary.
-

 - Properties

 Definition                         | Description
------------------------------|---------------------------------------------------------------------
+-----------------------------------|---------------------------------------------------------------------
 public Int32 **Count** | Gets the number of entries.
 public JSONValue **this**[String key] | Gets or set the value associated with the given key.
-

 - Methods

 Definition                         | Description
------------------------------|---------------------------------------------------------------------
-
+-----------------------------------|---------------------------------------------------------------------
+public bool **Remove**(String key) | Removes entry associated with specified key and returns true if entry is found.
+public IEnumerator&gt; **GetEnumerator**() | Returns an enumerator that iterates through JSONObject.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Elvedin Hamzagic</dc:creator><pubDate>Tue, 24 Sep 2013 13:14:38 -0000</pubDate><guid>https://sourceforge.net2765e62d8db74fecf073bdeecda58ae522674f42</guid></item></channel></rss>