Thread overview
.Net
Nov 09, 2011
Reklen
Nov 09, 2011
Trass3r
Nov 09, 2011
Kagamin
November 09, 2011
Is there a project to export D in .Net world? I see this
http://dnet.codeplex.com/
but it seems dead.
I don't think D could be a rival to C# but i'm sure it may be
interesting if it works in such enviroment.
November 09, 2011
Am 09.11.2011, 13:39 Uhr, schrieb Reklen <reklen@mymaill.com>:

> Is there a project to export D in .Net world? I see this
> http://dnet.codeplex.com/
> but it seems dead.

Feel free to continue that project ;)
Apart from that you are left with C interface dlls.
November 09, 2011
Reklen Wrote:

> Is there a project to export D in .Net world? I see this
> http://dnet.codeplex.com/
> but it seems dead.
> I don't think D could be a rival to C# but i'm sure it may be
> interesting if it works in such enviroment.

AFAIK the author tried to preserve D string semantics which is incompatible with CLI string semantics, so it proved to be difficult to get it work.
November 09, 2011
On 09-11-2011 15:54, Kagamin wrote:
> Reklen Wrote:
>
>> Is there a project to export D in .Net world? I see this
>> http://dnet.codeplex.com/
>> but it seems dead.
>> I don't think D could be a rival to C# but i'm sure it may be
>> interesting if it works in such enviroment.
>
> AFAIK the author tried to preserve D string semantics which is incompatible with CLI string semantics, so it proved to be difficult to get it work.

He could have just used plain char[] arrays instead of System.String, though...

- Alex