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

StartsWith() public static méthode

Check if the string value begins with the text.
public static StartsWith ( string text, string value ) : bool
text string The AutoCompleteBox prefix text.
value string The item's string value.
Résultat bool
        public static bool StartsWith(string text, string value)
        {
            return value.StartsWith(text, StringComparison.CurrentCultureIgnoreCase);
        }