How I can searching some strings in C#? Well, if I have string “James Bond” and I am searching for “James” or “james” it will returning true, but if I am searching for “jame” it will return false. How I can do that?
Maybe I need little specific. I need searching based on word which splitted by ‘ ‘ See above. If I am searching for jame it will return false. If I use contains when I search for jame it will also return true right?
How I can searching some strings in C#? Well, if I have string James
Share
As per your question this is what you would use.
Since this question is causing a lot of confusion, you have to keep in mind all of the casing involved.