View JBeamToJSON.cs
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Text.RegularExpressions; | |
private static string JBeamToJSON(string jbeamtext) | |
{ | |
jbeamtext = Regex.Replace(jbeamtext, @"//.*\r\n", delegate(Match match) | |
{ |