var tmp = project.Variables["tmp"].Value;
var fields = "uid,name,description,shortname,picAvatar,members_count,shop_visible_public".Split(',');
var regex = new Regex("\"([^\"]+)\":\"?(.*?)\"?(,|}|\\])");
var d = regex.Matches(tmp).Cast<Match>().ToDictionary(k=>k.Groups[1].Value...