i need to check if my textbox doesn't contain specific string "Fold". I used to do this like this
if (textbox.Text.Contains("Fold"){}
else { do stuff }
but now i need some alternative of this.
i need to check if my textbox doesn't contain specific string "Fold". I used to do this like this
if (textbox.Text.Contains("Fold"){}
else { do stuff }
but now i need some alternative of this.