Re: Calling .NET from D

2016-03-26 Thread NX via Digitalmars-d
I used this[1] code for interfacing between C# and D once. It[2] demonstrates how to use a function callback passed from C# code. C# use winapi calling convention by default which caused me hours of headache untill I figured it out. Fortunately, there is an attribute to specify it. [1] https:

Re: Calling .NET from D

2016-03-26 Thread Taylor Hillegeist via Digitalmars-d
b.com/taylorh140/Calling-NET-from-D Thank you so much for this. This is very helpful indeed. I guess you might have looked also into going the other way around - calling D code from C#. Anything one should know beyond the standard pinvoke/C API described here? https://msdn.microsoft.com/

Re: Calling .NET from D

2016-03-26 Thread Laeeth Isharc via Digitalmars-d
On Saturday, 26 March 2016 at 07:53:06 UTC, Taylor Hillegeist wrote: Found a simple way to call .NET managed code from un-managed D code. I didn't know about it so I thought someone else could find it useful. https://github.com/taylorh140/Calling-NET-from-D Thank you so much for this.

Calling .NET from D

2016-03-26 Thread Taylor Hillegeist via Digitalmars-d
Found a simple way to call .NET managed code from un-managed D code. I didn't know about it so I thought someone else could find it useful. https://github.com/taylorh140/Calling-NET-from-D