i was wonder if i could check if a string contains a string even if it has different case for example , "Hello" would find "hello"
what i tried:
string test = "Hello"
if (test.Contains("hello"))
{
Debug.WriteLine("Contains!");
}
but it isn't found , how would i make it say it does contain it?