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
path: root/mcs/class
diff options
context:
space:
mode:
authorJackson Harper <jackson@novell.com>2003-11-23 08:14:53 +0300
committerJackson Harper <jackson@novell.com>2003-11-23 08:14:53 +0300
commit81ca226d7563e628b29dfad09a55afaadb7eea7a (patch)
treefdb634d1964cd71617a8b2f6651a1c6fcf267518 /mcs/class
parentb8f24da8b50bcce2df529e11b5ceebeb4dec795c (diff)
* regex.cs: Add CultureInvariant flag to RegexOptions.
svn path=/trunk/mcs/; revision=20351
Diffstat (limited to 'mcs/class')
-rw-r--r--mcs/class/System/System.Text.RegularExpressions/ChangeLog4
-rw-r--r--mcs/class/System/System.Text.RegularExpressions/regex.cs3
2 files changed, 6 insertions, 1 deletions
diff --git a/mcs/class/System/System.Text.RegularExpressions/ChangeLog b/mcs/class/System/System.Text.RegularExpressions/ChangeLog
index 6fb65fad7af..0c9d62a9c50 100644
--- a/mcs/class/System/System.Text.RegularExpressions/ChangeLog
+++ b/mcs/class/System/System.Text.RegularExpressions/ChangeLog
@@ -1,3 +1,7 @@
+2003-11-22 Jackson Harper <jackson@ximian.com>
+
+ * regex.cs: Add CultureInvariant flag to RegexOptions.
+
2003-11-20 Juraj Skripsky <js@hotfeet.ch>
* quicksearch.cs: Use a hashtable instead of an array for the
diff --git a/mcs/class/System/System.Text.RegularExpressions/regex.cs b/mcs/class/System/System.Text.RegularExpressions/regex.cs
index b9de71d3350..bca4fab53f9 100644
--- a/mcs/class/System/System.Text.RegularExpressions/regex.cs
+++ b/mcs/class/System/System.Text.RegularExpressions/regex.cs
@@ -30,7 +30,8 @@ namespace System.Text.RegularExpressions {
Singleline = 0x010,
IgnorePatternWhitespace = 0x020,
RightToLeft = 0x040,
- ECMAScript = 0x100
+ ECMAScript = 0x100,
+ CultureInvariant = 0x200
}
[Serializable]