up vote 11 down vote favorite
share [g+] share [fb]

I'm curious: has anyone used D together with .NET languages? Is that even possible? What kind of stuff is easier/makes sense to do in D that's hard to do in, say, C++/CLI?

link|improve this question

56% accept rate
feedback

3 Answers

http://the-free-meme.blogspot.com/ is a blog by someone who is working on getting d on dot net.

Edit:

nanu and nono are projects that are trying to get mono/D working but both have not had any changes in there svn /trunk in the last year.

link|improve this answer
feedback

Using D together with .NET is very possible. The reason:

  • .NET is able to import unmanaged C libraries (.dll's which export C functions) using the dllImport attribute.
  • D is able to export C functions. using the export and extern (C) attributes

So the considering the technicalities, it's completely possible.

With regards to what D makes easier than C++, the answer is fairly easy: "Everything". In a sense, D is really just a copy of C++ with just about everything done simpler. Sure that's only a half story, but reasonably true.

link|improve this answer
feedback

You can call a D DLL by creating a DLL with a C Interface, and then calling it via P/Invoke from .NET.

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.