[Quantproject-developers] QuantProject/b1_ADT ConstantsProvider.cs, 1.16, 1.17
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2006-06-08 18:47:02
|
Update of /cvsroot/quantproject/QuantProject/b1_ADT In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv24529/b1_ADT Modified Files: ConstantsProvider.cs Log Message: a format string for 6 decimals has been added (a general method should be implemented; in the to do list) Index: ConstantsProvider.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b1_ADT/ConstantsProvider.cs,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** ConstantsProvider.cs 2 Jun 2006 18:55:58 -0000 1.16 --- ConstantsProvider.cs 8 Jun 2006 18:46:53 -0000 1.17 *************** *** 29,32 **** --- 29,33 ---- public static string FormatWithOneDecimal = "#,#.0"; public static string FormatWithTwoDecimals = "#,#.00"; + public static string FormatWithSixDecimals = "#,#.000000"; public static DateTime MinQuoteDateTime = new DateTime( 1950 , 1 , 1 ); public static int CachePages = 1000; |