You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
NodeEditor/Extensions/ReadJSON.cs

25 lines
437 B
C#

using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NodeEditor
{
class ReadJSON
{
public Boolean validateJSON(string jsonString)
{
bool isValid = true;
JObject json = JObject.Parse(jsonString);
return isValid;
}
}
}