7

I have this if else statement which is assigned to compare results from a text box to a list of context. I am wondering how do i make it such that it is case insensitive ?

value = textbox1.Text;

if (article.contains(value))
{   
    label = qwerty;

}
else
{

     break;
{
leppie
  • 112,162
  • 17
  • 191
  • 293
user2691544
  • 339
  • 1
  • 3
  • 11

1 Answers1

6

try this

if(article.IndexOf(value, StringComparison.OrdinalIgnoreCase) >= 0)
{
//   ....
}
else
{
// .....
}
Milad Hosseinpanahi
  • 1,485
  • 12
  • 20