Is there an equivalent to the C# “var” keyword in C++/CLI?

In Visual Studio 2008 there is no such equivalent. However with Visual Studio 2010 you can use the auto keyword to implement var like semantics in C++. I know this works with non-managed C++ and I’m fairly certain it works for C++/CLI as well.

Leave a Comment