• Home
  • Search Tags
  • About

C++/CLI

Topics related to C++/CLI:

Getting started with C++/CLI

C++/CLI is a Microsoft-specific dialect of C++ which interoperates well with .NET. Originally, it was envisioned as the "most powerful" of .NET languages and included designer support for WinForms applications. However, new development on C++/CLI has all but ceased, and Microsoft now intends that the language only be used in "interop" scenarios:

  • allowing .NET code to use existing (legacy) C or C++ code, or
  • providing a mechanism for existing C or C++ code to call into (presumably, newer) .NET code.

Interop scenarios that might be complex with P/Invoke can be considerably easier with C++/CLI.

Content on the page is taken from Stack Overflow Documentation

This site is NOT affiliated with Stack Overflow or any of the contributors. | Privacy Policy | Terms of Service