summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Globalization/BidiCategory.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/Globalization/BidiCategory.cs')
-rw-r--r--src/mscorlib/src/System/Globalization/BidiCategory.cs38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/mscorlib/src/System/Globalization/BidiCategory.cs b/src/mscorlib/src/System/Globalization/BidiCategory.cs
new file mode 100644
index 0000000000..202d85a03d
--- /dev/null
+++ b/src/mscorlib/src/System/Globalization/BidiCategory.cs
@@ -0,0 +1,38 @@
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+
+/*============================================================
+**
+**
+** Purpose:
+**
+**
+============================================================*/
+namespace System.Globalization {
+ [Serializable]
+ internal enum BidiCategory {
+ LeftToRight = 0,
+ LeftToRightEmbedding = 1,
+ LeftToRightOverride = 2,
+ RightToLeft = 3,
+ RightToLeftArabic = 4,
+ RightToLeftEmbedding = 5,
+ RightToLeftOverride = 6,
+ PopDirectionalFormat = 7,
+ EuropeanNumber = 8,
+ EuropeanNumberSeparator = 9,
+ EuropeanNumberTerminator = 10,
+ ArabicNumber = 11,
+ CommonNumberSeparator = 12,
+ NonSpacingMark = 13,
+ BoundaryNeutral = 14,
+ ParagraphSeparator = 15,
+ SegmentSeparator = 16,
+ Whitespace = 17,
+ OtherNeutrals = 18,
+ LeftToRightIsolate = 19,
+ RightToLeftIsolate = 20,
+ FirstStrongIsolate = 21,
+ PopDirectionIsolate = 22,
+ }
+}