> For the complete documentation index, see [llms.txt](https://andreyakinshin.gitbook.io/problembookdotnet/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://andreyakinshin.gitbook.io/problembookdotnet/ru/strings/caseincomparison-s.md).

# «CaseInComparison» (Решение)

## Ответ

Нет.

## Объяснение

В некоторых локалях результат будет разный. Пример:

```csharp
var a = "i";
var b = "I";
Thread.CurrentThread.CurrentCulture = 
  CultureInfo.CreateSpecificCulture("tr-TR");
Console.WriteLine(
  string.Compare(a.ToUpper(), b.ToUpper())); //'1'
Console.WriteLine(
  string.Compare(a, b, StringComparison.OrdinalIgnoreCase)); //'0'
```

## Ссылки

* [The Turkey Test](http://www.moserware.com/2008/02/does-your-code-pass-turkey-test.html)

[Задача](/problembookdotnet/ru/strings/caseincomparison-p.md)
