Timeline for Is it possible to use C++ with the .NET framework?
Current License: CC BY-SA 4.0
12 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| S Jul 8, 2018 at 22:40 | history | edited | Jesse C. Slicer | CC BY-SA 4.0 |
added F# to supported languages in last sentence.
|
| S Jul 8, 2018 at 22:40 | history | suggested | mh sattarian | CC BY-SA 4.0 |
added F# to supported languages in last sentence.
|
| Jul 8, 2018 at 16:22 | review | Suggested edits | |||
| S Jul 8, 2018 at 22:40 | |||||
| Jan 6, 2013 at 10:08 | vote | accept | ddacot | ||
| Jan 6, 2013 at 10:08 | vote | accept | ddacot | ||
| Jan 6, 2013 at 10:08 | |||||
| Feb 15, 2012 at 13:47 | comment | added | Jesse C. Slicer | @SK-logic exactly what a team I was on used it for - the mixed-mode allowed the legacy Delphi UI code to communicate to the new engine in C#. | |
| Feb 15, 2012 at 9:33 | comment | added | SK-logic | @keykeeper, a typical use of C++/CLI is to be a thin bridge between an unmanaged C++ library and the managed world. It is sufficient for such a use. Of course it does not make sense to code something sizeable in it. | |
| Feb 14, 2012 at 22:22 | comment | added | Jesse C. Slicer | Last time I wrote some C++ was literally sometime in the last century :) | |
| Feb 14, 2012 at 22:11 | comment | added | Igor Soloydenko | That's OK. Actually, I'm not good in C++. I just thought that there can be another important differences which can make problems. | |
| Feb 14, 2012 at 21:58 | comment | added | Jesse C. Slicer | This is mentioned in some detail in the first link. The summary is thus: "C++ has evolved much over time and most software written in the language is object oriented. Managed C++ and the use of classes and class based objects remains prevalent like in Visual C++. The only major change to this in Managed C++ is that the capabilities of multiple inheritance are not supported. This is because of a limitation of the CLR. A class managed under the CLR's garbage collector cannot inherit more than one class." | |
| Feb 14, 2012 at 21:49 | comment | added | Igor Soloydenko | +1 To Jesse's answer. If I am not mistaken, C++/CLI doesn't support multiple inheritance. So, be prepared to some unexpected features. Some of these features came from limitations of the CLI. I recommend you trying to find difference between C++/CLI and 'classic' C++ before you start using it. | |
| Feb 14, 2012 at 19:30 | history | answered | Jesse C. Slicer | CC BY-SA 3.0 |