Skip to content

Commit 979ddb0

Browse files
authored
Update eqcmp.cs (#7885)
1 parent ed73218 commit 979ddb0

File tree

1 file changed

+12
-12
lines changed
  • snippets/csharp/System/String/Equals

1 file changed

+12
-12
lines changed

snippets/csharp/System/String/Equals/eqcmp.cs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -41,39 +41,39 @@ public static void Main()
4141
// The current culture is en-US.
4242
//
4343
// Comparisons using CurrentCulture:
44-
// i (U+0069) = i (U+0131): False
44+
// i (U+0069) = ı (U+0131): False
4545
// i (U+0069) = I (U+0049): False
4646
//
47-
// i (U+0131) = I (U+0049): False
47+
// ı (U+0131) = I (U+0049): False
4848
//
4949
// Comparisons using CurrentCultureIgnoreCase:
50-
// i (U+0069) = i (U+0131): False
50+
// i (U+0069) = ı (U+0131): False
5151
// i (U+0069) = I (U+0049): True
5252
//
53-
// i (U+0131) = I (U+0049): False
53+
// ı (U+0131) = I (U+0049): False
5454
//
5555
// Comparisons using InvariantCulture:
56-
// i (U+0069) = i (U+0131): False
56+
// i (U+0069) = ı (U+0131): False
5757
// i (U+0069) = I (U+0049): False
5858
//
59-
// i (U+0131) = I (U+0049): False
59+
// ı (U+0131) = I (U+0049): False
6060
//
6161
// Comparisons using InvariantCultureIgnoreCase:
62-
// i (U+0069) = i (U+0131): False
62+
// i (U+0069) = ı (U+0131): False
6363
// i (U+0069) = I (U+0049): True
6464
//
65-
// i (U+0131) = I (U+0049): False
65+
// ı (U+0131) = I (U+0049): False
6666
//
6767
// Comparisons using Ordinal:
68-
// i (U+0069) = i (U+0131): False
68+
// i (U+0069) = ı (U+0131): False
6969
// i (U+0069) = I (U+0049): False
7070
//
71-
// i (U+0131) = I (U+0049): False
71+
// ı (U+0131) = I (U+0049): False
7272
//
7373
// Comparisons using OrdinalIgnoreCase:
74-
// i (U+0069) = i (U+0131): False
74+
// i (U+0069) = ı (U+0131): False
7575
// i (U+0069) = I (U+0049): True
7676
//
77-
// i (U+0131) = I (U+0049): False
77+
// ı (U+0131) = I (U+0049): False
7878
// </Snippet1>
7979
// 119 lines

0 commit comments

Comments
 (0)