René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback
 

cpp and .net

It is possible to have C++ use the CLR.
#using <mscorlib.dll>
#using <System.Windows.forms.dll>

using namespace System;
using namespace System::Windows::Forms;
extern "C" int __stdcall WinMain(void*, void*, char*, int) {
  MessageBox::Show("Und tschüss","TSU");
  return 0;
}