示例#1
0
 public void DumpToResultsLog(BetHandResult betHandResult)
 {
     if (ResultsWriter != null)
     {
         try
         {
             ResultsWriter.WriteLine(betHandResult.ConvertToString());
         }
         catch (Exception ex)
         {
             TraceWrapper.LogException(ex, "Cannot save results to a txt file!");
         }
     }
 }