Пример #1
0
 private static void UpdateCellSafe(QuoteTradeControl cell, QuoteData quote)
 {
     try
     {
         cell.BeginInvoke(new UpdateCellDel(UpdateCellUnsafe), cell, quote);
     }
     catch (Exception ex)
     {
         Logger.Error("QuoteTableControl.UpdateSellSafe: " + ex.Message);
     }
 }