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

ContainsCaseSensitive() 공개 정적인 메소드

Check if the prefix is contained in the string value.
public static ContainsCaseSensitive ( string text, string value ) : bool
text string The AutoCompleteBox prefix text.
value string The item's string value.
리턴 bool
        public static bool ContainsCaseSensitive(string text, string value)
        {
            return value.Contains(text, StringComparison.CurrentCulture);
        }