public void JsonSetValueExample( )
        {
            #region JsonSetValueExample

            JObject json = new JObject( );
            json.Add("A", new JValue("Abcdea234a"));

            SoftBasic.JsonSetValue(json, "B", "1234");
            // json  A:Abcdea234a B:1234


            #endregion
        }