Managed Types and the main Function (C++/CLI)

When writing an application using /clr, the arguments of the main() function cannot be of a managed type.

An example of a proper signature is:

// managed_types_and_main.cpp
// compile with: /clr
int main(int, char*[], char*[]) {}

See Also

Other Resources

Managed Types (C++/CLI)