StringComparer.CurrentCultureIgnoreCase Property

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Gets a StringComparer object that performs case-insensitive string comparisons using the word comparison rules of the current culture.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public Shared ReadOnly Property CurrentCultureIgnoreCase As StringComparer
public static StringComparer CurrentCultureIgnoreCase { get; }

Property Value

Type: System.StringComparer
A new StringComparer object.

Remarks

The current culture is the CultureInfo object associated with the current thread.

The StringComparer returned by the CurrentCultureIgnoreCase property can be used when strings are linguistically relevant but their case is not. For example, if strings are displayed to the user but case is unimportant, culture-sensitive, case-insensitive string comparison should be used to order the string data.

The CurrentCultureIgnoreCase property actually returns an instance of an anonymous class derived from the StringComparer class.

Each call to the CurrentCultureIgnoreCase property get accessor returns a new StringComparer object, as the following code shows.

Private Sub CompareCurrentCultureInsensitiveStringComparers(ByVal outputBlock As System.Windows.Controls.TextBlock)
   Dim stringComparer1, stringComparer2 As StringComparer
   stringComparer1 = StringComparer.CurrentCultureIgnoreCase
   stringComparer2 = StringComparer.CurrentCultureIgnoreCase
   ' Displays False
   outputBlock.Text += StringComparer.ReferenceEquals(stringComparer1, _
                                                    stringComparer2) & vbCrLf
End Sub
private void CompareCurrentCultureInsensitiveStringComparer(System.Windows.Controls.TextBlock outputBlock)
{
   StringComparer stringComparer1, stringComparer2;
   stringComparer1 = StringComparer.CurrentCultureIgnoreCase;
   stringComparer2 = StringComparer.CurrentCultureIgnoreCase;
   // Displays false
   outputBlock.Text += StringComparer.ReferenceEquals(stringComparer1,
                                                    stringComparer2) + "\n";
}

To improve performance, you can store the StringComparer object in a local variable rather than retrieve the value of the CurrentCultureIgnoreCase property multiple times.

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.