how to cjeck if a string has a word csharp

Code Example - how to cjeck if a string has a word csharp

                
                        using System;

public class Demo {
   public static void Main() {
      string s = "Together we can do so much!";
      if (s.Contains("much") == true) {
         Console.WriteLine("Word found!");
      } else {
         Console.WriteLine("Word not found!");
      }
   }
}