Beispiel #1
0
 public async Task Show(IPlotter plotter)
 {
     try
     {
         await Show(plotter.ShowAsHtml());
     }
     catch (Exception e)
     {
         Console.WriteLine(e);
         throw;
     }
 }
Beispiel #2
0
 public void ShowPlot(IPlotter plotter)
 {
     Task.WaitAll(Show(plotter.ShowAsHtml()));
 }