Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Triger <kostat@mono-cvs.ximian.com>2007-04-05 17:53:23 +0400
committerKonstantin Triger <kostat@mono-cvs.ximian.com>2007-04-05 17:53:23 +0400
commite1123c3b45c2e67c7211ae22601a00aaa818b457 (patch)
tree798972e8ddcaf79fc683dd85ac509cdb7b65376f /mcs/class/System.Data/System.Data.Common/DataContainer.cs
parent3ac5ae3055e2a838068f64df71dbb728bb05262b (diff)
use Invariant culture for string manipulations
svn path=/trunk/mcs/; revision=75441
Diffstat (limited to 'mcs/class/System.Data/System.Data.Common/DataContainer.cs')
-rw-r--r--mcs/class/System.Data/System.Data.Common/DataContainer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.Data/System.Data.Common/DataContainer.cs b/mcs/class/System.Data/System.Data.Common/DataContainer.cs
index cac69098381..0354c2801fb 100644
--- a/mcs/class/System.Data/System.Data.Common/DataContainer.cs
+++ b/mcs/class/System.Data/System.Data.Common/DataContainer.cs
@@ -1212,7 +1212,7 @@ namespace System.Data.Common
return 1;
}
}
- return String.Compare((string)this[index1], (string)this[index2], !Column.Table.CaseSensitive);
+ return String.Compare((string)this[index1], (string)this[index2], !Column.Table.CaseSensitive, Column.Table.Locale);
}
#endregion //Methods