using System;
using System.Collections.Generic;
using System.Linq;
public class MyList : List<int>
{
public void Where(object o)
Console.WriteLine("The Where instance method has been called");
}
public static void Main()
var x = new MyList();
x.Where(i => i == 2);