Exemplo n.º 1
0
 /// <summary>
 /// TickPrice event invocator
 /// </summary>
 protected virtual void OnTickPrice(TickPriceEventArgs e)
 {
     TickPrice?.Invoke(this, e);
 }
Exemplo n.º 2
0
 /// <summary>
 /// TickPrice event invocator
 /// </summary>
 protected virtual void OnTickPrice(TickPriceEventArgs e)
 {
     var handler = TickPrice;
     if (handler != null) handler(this, e);
 }