vote up 0 vote down star

Hi,

I've recently converted an app from .net 2.0 to 3.5 but I don't see any extension methods... what am I doing wrong? Or what else should I do besides changing the target framework from 2.0 to 3.5 in project settings?

flag

3 Answers

vote up 2 vote down check

Extension methods appear based on the imported namespaces try adding

using System.Linq;

to the top of your files. As Jon says you'll also need add a reference to System.Core.dll assembly.

link|flag
thanks that was what I was looking for! – argh May 20 at 15:18
vote up 1 vote down

You not only need to add the using directive for System.Linq as SillyMonkey suggested, but you also need to have a reference to the System.Core assembly if you want to use LINQ.

link|flag
isn't that added as you change target framework to 3.5? – argh May 20 at 15:19
@argh - I think it is. But it makes for a more complete answer (eg. the reference may get left out depending on how the project is upgraded) – SillyMonkey May 20 at 15:37
vote up 0 vote down

Extension method, is feature of .net 3.5. extension methods are some thing that you need to create !!!

http://stackoverflow.com/questions/403539/what-are-extension-methods

refer this link

link|flag
actually there are bunch of default extensions ships with 3.5. – dr. evil May 20 at 10:17
dude, I don't know if you know... but there are extension methods ALREADY written in 3.5 – argh May 20 at 10:17
Sorry, I misunderstood you question!! my fault :) – Prashant May 20 at 10:22
no problem, nothing serious happened ;) – argh May 20 at 15:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.