C
cronusf
I do not get the difference between these two modes. I read that pure
mode produces code that uses IL instructions only. Does that mean a
mixed mode EXE might have native code and IL code? How does that
work?
Is the following correct:
1. In pure mode: If you have managed classes and native code
(unmanaged classes), it all gets compiled to IL.
2. In mixed mode: If you have managed classes and unmanaged classes,
the managed classes compile to IL and the unmanaged classes get
compiled to native code.
mode produces code that uses IL instructions only. Does that mean a
mixed mode EXE might have native code and IL code? How does that
work?
Is the following correct:
1. In pure mode: If you have managed classes and native code
(unmanaged classes), it all gets compiled to IL.
2. In mixed mode: If you have managed classes and unmanaged classes,
the managed classes compile to IL and the unmanaged classes get
compiled to native code.