C++ and XNA (I couldn't find it, yet)
Hey, I was wondering if GSE will, at a later stage, support C++ or is it C# exclusive?
Many Thanks.
t_p
Hey, I was wondering if GSE will, at a later stage, support C++ or is it C# exclusive?
Many Thanks.
t_p
teh_programerer wrote:
Hey, I was wondering if GSE will, at a later stage, support C++ or is it C# exclusive?
Many Thanks.
t_p
It's been stated that other languages may be sorted at a later date but no language confirmed. To get GSE out in a reasonable amount of time the only language that could be supported was C#. A similar topic about VB.NET and XNA is located here
At the runtime level it doesn't know what language you used to develop your assembly. All it sees is a stream of MSIL byte codes that need to be Jitted. Therefore you could probably write an assembly in Managed C++ that would work (If you make sure it is pure IL).
Having said that there would be no support for doing this kind of thing from the XNA team and you would be on your own.
good luck
In many ways C# is simalair to C++ (syntax speaking) so picking it up isn't that difficult if you now c++ (and you'll be rid of the dreaded pointers.