Back

C++/CLI

C++/CLI is a programming language that extends the C++ language and includes features specifically designed for interoperability with the .NET framework. It is mainly used for developing applications that can combine managed code and native code, making it suitable for creating Windows desktop applications, libraries, and components.

Hello, world code example:

using namespace System;
int main()
{
  Console::WriteLine("Hello world!");
}

Popularity: Less than 1% of developers are using or have used this language.*
*According to StackOverflow's 2023 survey.

Repositories on GitHub: 15,356