A good site with examples for the language extension feature of .Net 3.* can be found here. As a shortcut look at this example taken from linked site:
public static bool In(this object o, IEnumerable c) { foreach(object i in c) { if(i.Equals(o)) return true; } return false; }