using System; public class Test { public static void Main() { var big = "Hello world!"; var small = "world"; if (big.IndexOf(small, 6, small.Length) == 6) { Console.WriteLine("Matched!"); } } }