System.Windows.Controls.AutoCompleteSearch.EqualsCaseSensitive C# (CSharp) Méthode

EqualsCaseSensitive() public static méthode

Check if the string values are equal.
public static EqualsCaseSensitive ( string text, string value ) : bool
text string The AutoCompleteBox prefix text.
value string The item's string value.
Résultat bool
        public static bool EqualsCaseSensitive(string text, string value)
        {
            return value.Equals(text, StringComparison.CurrentCulture);
        }