System.Windows.Controls.AutoCompleteSearch.EqualsCaseSensitive C# (CSharp) Method

EqualsCaseSensitive() public static method

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.
return bool
        public static bool EqualsCaseSensitive(string text, string value)
        {
            return value.Equals(text, StringComparison.CurrentCulture);
        }