// Install Newtonsoft.Json from nuget
//then add namespace
//Using NewtonSoft.Json;
public bool Write(string filePath, DataTable table, string fileName)
{
try
{
bool success = false;
using (var file = File.CreateText(filePath + "" + fileName))
{
JsonSerializer serializer = new JsonSerializer();
serializer.Serialize(file, table);
success = true;
}
return success;
}
catch (Exception ex)
{
throw new Exception(ex.Message);
}
}