Answers for "how to make a string case insensitive in c#"

C#
0

c# Case insensitive Contains(string)

// To test if the string paragraph contains the string word
culture.CompareInfo.IndexOf(paragraph, word, CompareOptions.IgnoreCase) >= 0
Posted by: Guest on July-01-2021

Code answers related to "how to make a string case insensitive in c#"

C# Answers by Framework

Browse Popular Code Answers by Language