A feature under discussion may not be part of Standard C++, but if it's part of Managed C++, why go to C# to have it? If you're willing to target the .NET Framework and write a managed application, why not write in Managed C++?
Articles Written by Kate Gregory
What is Shadowing, and Is It True that C++ Does It?
If I have a method in my base class that takes an integer, and I write an overload of that method in a derived class that takes something different, can I still call the original method that was inherited from the base class? The answer might surprise you.
Why Don't I Get Those Keywords?
Do you ever get jealous when you're reading code in other managed languages? Code that uses keywords such as Property and Delegate and using. Have you ever wondered whether you could use those in your C++ applications? You can, but it's not always obvious how to do so.
Strings and Performance in .NET
STL, String, StringBuilder, character arrays '— How do you get the best performance when working with strings?
Sample Chapter: The .NET Base Class Libraries
The libraries in the .NET Framework cover almost every task you are likely to tackle when developing for .NET. Learn how to use them from this chapter from the Visual C++ .NET 2003 Kick Start.
Performance Matters: Choose Your Library Wisely
Benchmarking is not for the faint of heartyou have to know what you're measuring. Don't always believe that Java is faster than VB.NET, nor that C# is faster than C++. Kate shows you how to perform more critical benchmarking.
