Hello, I have a string where I want to search if there is a word but not case sensitive.
Example:
string tt2 = "teste amanha de manha";
string pp = "Amanha";
if (tt2.Contains(pp))
{
//Não entra na condição pois na string o amanha tem o "a" em minusculo
}