fork(14) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. var big = "Hello world!";
  8. var small = "world";
  9. if (big.IndexOf(small, 6, small.Length) == 6) {
  10. Console.WriteLine("Matched!");
  11. }
  12. }
  13. }
Success #stdin #stdout 0.05s 24424KB
stdin
Standard input is empty
stdout
Matched!