Dev2.Data.Util.Scrubber.ScrubJson C# (CSharp) Method

ScrubJson() static private method

static private ScrubJson ( string text ) : string
text string
return string
        static string ScrubJson(string text)
        {
            if(text.StartsWith("[{"))
            {
                text = "{UnnamedArrayData:" + text + "}";
            }
            return text;
        }