[Quantproject-developers] QuantProject/b4_Business/a2_Strategies SignedTickers.cs, 1.3, 1.4
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2007-09-01 14:21:46
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a2_Strategies In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27337/b4_Business/a2_Strategies Modified Files: SignedTickers.cs Log Message: arrayForTickers[ i ] = ((SignedTicker)(List[ i ])).Ticker; has been simplifed to arrayForTickers[ i ] = this[ i ].Ticker; Index: SignedTickers.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a2_Strategies/SignedTickers.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SignedTickers.cs 27 Aug 2007 22:22:03 -0000 1.3 --- SignedTickers.cs 1 Sep 2007 14:21:34 -0000 1.4 *************** *** 64,70 **** string[] arrayForTickers = new string[ List.Count ]; for ( int i = 0 ; i < List.Count ; i++ ) ! { ! arrayForTickers[ i ] = ((SignedTicker)(List[ i ])).Ticker; ! } return arrayForTickers; } --- 64,69 ---- string[] arrayForTickers = new string[ List.Count ]; for ( int i = 0 ; i < List.Count ; i++ ) ! // arrayForTickers[ i ] = ((SignedTicker)(List[ i ])).Ticker; ! arrayForTickers[ i ] = this[ i ].Ticker; return arrayForTickers; } |