System.Windows.Controls.AutoCompleteSearch.Equals C# (CSharp) 메소드

Equals() 공개 정적인 메소드

Check if the string values are equal.
public static Equals ( string text, string value ) : bool
text string The AutoCompleteBox prefix text.
value string The item's string value.
리턴 bool
        public static bool Equals(string text, string value)
        {
            return value.Equals(text, StringComparison.CurrentCultureIgnoreCase);
        }