[Quantproject-developers] QuantProject/b1_ADT ConstantsProvider.cs,1.10,1.11
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2005-06-19 14:57:20
|
Update of /cvsroot/quantproject/QuantProject/b1_ADT In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15056/b1_ADT Modified Files: ConstantsProvider.cs Log Message: Added new formatting strings Index: ConstantsProvider.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b1_ADT/ConstantsProvider.cs,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** ConstantsProvider.cs 26 May 2005 23:26:41 -0000 1.10 --- ConstantsProvider.cs 19 Jun 2005 14:57:11 -0000 1.11 *************** *** 26,30 **** // max num days allowed by the data source (yahoo) public static double MaxNumDaysDownloadedAtEachConnection = 200; ! public static string FormatWithTwoDecimals = "0:#,#.00"; public static DateTime MinQuoteDateTime = new DateTime( 1950 , 1 , 1 ); public static int CachePages = 1000; --- 26,32 ---- // max num days allowed by the data source (yahoo) public static double MaxNumDaysDownloadedAtEachConnection = 200; ! public static string FormatWithZeroDecimals = "#,#."; ! public static string FormatWithOneDecimal = "#,#.0"; ! public static string FormatWithTwoDecimals = "#,#.00"; public static DateTime MinQuoteDateTime = new DateTime( 1950 , 1 , 1 ); public static int CachePages = 1000; |