vote up 1 vote down star

Hi, when I apply the tag above my methods I get the error

Type System.Runtime.CompilerServices.Extension is not defined.

Here is my sample

<System.Runtime.CompilerServices.Extension()> _
     Public Sub test()

End Sub

Where am I going wrong?

Edit ~ Straight from the MSDN Article here, the same error

Imports System.Runtime.CompilerServices

Module StringExtensions
     _
  Public Sub Print(ByVal aString As String)
        Console.WriteLine(aString)
    End Sub

End Module

I am using Visual Studio 2008 and 3.5 Framework in my project.

Solution ~ The project was on 2.0 Framework. Changed to 3.5 and it works.

flag

65% accept rate

4 Answers

vote up 1 vote down check

What version of .net framework the IDE is pointing towards?

Also, at first glance the syntax of extension method looks incorrect.

The code is incomplete. Please put the using statements in the example for anyone to use the code and compile it - to reproduce the error.

link|flag
It was 2.0. I had to change to 3.5 and it works. – Saif Khan Dec 2 '08 at 3:54
vote up 1 vote down

I would add the namespace to the imports so you don't have to type it every time:

Imports System.Runtime.CompilerServices

<Extension()> _
Public Sub Test(ByVal Value As String)

End Sub

Once you have it in your imports you can just add Extension to the top of every method instead of the whole thing.

As shahkalpesh said you extension method is incomplete you will need to add the type you want to extend(see code first parm). I just had a play and found that if you don't supply a type to extend as a parameter the complier will throw an error.

link|flag
I did, see my edit...still doesn't work. – Saif Khan Dec 2 '08 at 3:46
can you right click on the <extension> _ bit and go to definition? – Nathan W Dec 2 '08 at 3:49
vote up 0 vote down

Use this...

System.Runtime.CompilerServices.ExtensionAttribute

Couldn't find anything called Extension in the namespace you mentioned.

link|flag
vote up 0 vote down

You should only be getting this error if one of the following are true

  1. You are not using VS 2008 - Extension Method support was added in VS2008
  2. Your code does not have a reference to System.Core.dll - Also added in VS2008

Can you check both of these? My supsicion is that you are attempting to use VS2005 to create an extension method. If this is the case, it is unfortunately not supported.

link|flag
I am using VS 2008. When I tried to add the reference to System.Core, its greyed out (meaning its added). – Saif Khan Dec 2 '08 at 3:40

Your Answer

Get an OpenID
or

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