Is there any way to search patterns in strings in C#?
Something like Sql LIKE would be very useful.
Have your tried
"This is a string".Contains("string");