public static IEnumerable<Stock> getNext() { for (int i = 0; i < samplePrices.Length; i++) { Stock s = new Stock(); s.Symbol = sampleStocks[i]; s.Price = samplePrices[i]; yield return s; } }
public void Update(Stock stock) { Console.WriteLine("Notified {0} of {1}'s " + "change to {2:C}", _name, stock.Symbol, stock.Price); }
public void Actualizar(Stock s) { MessageBox.Show("Notificado: " + nombre + " " + s.Producto + " cambio precio a " + s.Precio); }
public void Update(Stock stock) { MessageBox.Show("Notified _name of stock.Symbol change to " + stock.Price); }