Page 1 of 1

Managed machines

Posted: Wed Feb 01, 2012 7:32 pm
by thepedal
Does anyone have five minutes to explain the move towards managed machines for me? I'm just curious.

Does it make it is easier to build certain functionality?
Does it mean more stability or better performance?
Does it have any bearing on whether or not it's straightforward to compile as x64?
Is it seen as a new standard for building machines or just an option?

Is this link relevant??

http://en.wikipedia.org/wiki/Managed_Ex ... or_C%2B%2B

Re: Managed machines

Posted: Wed Feb 01, 2012 7:55 pm
by UNZ
thepedal wrote:Does anyone have five minutes to explain the move towards managed machines for me? I'm just curious.

Does it make it is easier to build certain functionality?
Does it mean more stability or better performance?
Does it have any bearing on whether or not it's straightforward to compile as x64?
Is it seen as a new standard for building machines or just an option?

Is this link relevant??

http://en.wikipedia.org/wiki/Managed_Ex ... or_C%2B%2B
easier: yes
stability: maybe
performance: not really
64bit: just works
standard: its an option. For not-so-dsp-heavy machines and especially for the GUI i think it makes a lot of sense.

managed extensions are now deprecated, there's a new syntax for using managed code in c++ called C++/CLI
http://de.wikipedia.org/wiki/C%2B%2B/CLI

Re: Managed machines

Posted: Wed Feb 01, 2012 8:34 pm
by thepedal
Thanks UNZ. That all makes sense.