[Adapdev-commits] Adapdev/src/Adapdev/Text StringUtil.cs,1.1.1.1,1.2
Status: Beta
Brought to you by:
intesar66
From: Sean M. <int...@us...> - 2005-07-01 02:45:34
|
Update of /cvsroot/adapdev/Adapdev/src/Adapdev/Text In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9426/src/Adapdev/Text Modified Files: StringUtil.cs Log Message: Index: StringUtil.cs =================================================================== RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev/Text/StringUtil.cs,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** StringUtil.cs 28 Feb 2005 01:31:42 -0000 1.1.1.1 --- StringUtil.cs 1 Jul 2005 02:45:25 -0000 1.2 *************** *** 88,92 **** else { ! string firstLetter = s.Substring(0, 1).ToUpper(); revised = firstLetter + s.Substring(1, s.Length - 1); } --- 88,92 ---- else { ! string firstLetter = s.Substring(0, 1).ToUpper(new System.Globalization.CultureInfo("en-US")); revised = firstLetter + s.Substring(1, s.Length - 1); } |