Very Simple these days..
string json = JsonConvert.SerializeObject(YourDataTable, Formatting.Indented);
Now Convert your Json to a DataTable:
YourDataTable = (DataTable)JsonConvert.DeserializeObject(json, (typeof(DataTable)));
Works for DataSets as well..