Пример #1
0
 public InstrumentOrderListTable this[IFIXInstrument instrument]
 {
     get
     {
         InstrumentOrderListTable table = this.orders[instrument] as InstrumentOrderListTable;
         if (table == null)
         {
             table = new InstrumentOrderListTable();
             this.orders.Add(instrument, table);
         }
         return(table);
     }
 }
Пример #2
0
		public InstrumentOrderListTable this[IFIXInstrument instrument]
		{
			get
			{
				InstrumentOrderListTable table = this.orders[instrument] as InstrumentOrderListTable;
				if (table == null)
				{
					table = new InstrumentOrderListTable();
					this.orders.Add(instrument, table);
				}
				return table;
			}
		}