Exporting the network

This function is where we export our network. To us, exporting means serializing the data into a JSON human-readable format, as follows:

public NNManager ExportNetwork()
{
Console.WriteLine("\tExporting Network...");
ExportHelper.ExportNetwork(_network);
Console.WriteLine("\t**Exporting Complete!**", Color.Green);
return this;
}