View Single Post
  #2  
Old 10-04-2011, 05:44 PM
FG28_Kodiak FG28_Kodiak is offline
Approved Member
 
Join Date: Dec 2009
Location: Swabia->Bavaria->Germany
Posts: 884
Default

you must set a reference to System.Linq.dll the before loading the namespaces, but may be you need others dlls too.
Example:

//$reference System.Data.dll
//$reference System.Linq.dll
//$reference System.XML.dll
using System;
using System.Data;
using System.Linq;
Reply With Quote