2010-08-25, 05:45 PM
What Spaz means is that you can use all the .NET classes from MC++ just like you used to do in C#. So instead of ofstream which is the C++ unmanaged stream, you can use FileStream. Basically you can copy any C# code and make it MC++ with a few syntactical changes.
Unless you are doing it because that's what university\school\college told you that you should do, I would generally NOT recommend making managed applications in C++. Making C++ managed is ultimately destroying the whole point of the language, and you are rather off coding C# because it is much simpler. I know you are using managed C++ because the unmanaged version has no text boxes.
Unless you are doing it because that's what university\school\college told you that you should do, I would generally NOT recommend making managed applications in C++. Making C++ managed is ultimately destroying the whole point of the language, and you are rather off coding C# because it is much simpler. I know you are using managed C++ because the unmanaged version has no text boxes.

