I'm using the latest release of IKVM to "compile" a Java .jar file into a .NET DLL. That all worked fine, and now I'm trying to reference the DLL in a .NET 3.5 C# project.

In my C# project, I've created an static "StringExtensions" class with an extension method on string.

For some reason this seemed to work yesterday, but today, I'm getting a build error on my extension class (not sure how this worked yesterday...).

Missing compiler required member System.Runtime.CompilerServices.ExtensionAttribute..ctor

And a build warning as well:

The predefined type 'System.Runtime.CompilerServices.ExtensionAttribute' is defined in multiple assemblies in the global alias; using definition from 'c:\TEMP\IKVM.Runtime.dll'

I discovered that both IKVM.Runtime.dll and System.Core.dll (3.5 version) have the same type: "System.Runtime.CompilerServices.ExtensionAttribute"

Since the namespace is the same, how can I get this to compile with the System.Core version of ExtensionAttribute (or how can I fix this)?

Thanks

link|improve this question

I got around this by getting rid of all my extension methods, but I'm still curious. It seems like the presence of IKVM.Runtime.dll in any project will cause problems with extension methods. – Andy White Mar 25 '09 at 17:34
feedback

2 Answers

up vote 1 down vote accepted

If you target .Net 2.0 you can only create extension methods if you define this attribute yourself. This works great until you move to .Net 3.5.

I don't know "IKVM" but the only real fix is to ask them to remove the attribute and target 3.5.

link|improve this answer
feedback

Updating to IKVM 0.40.0.1 fixed this problem for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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