Slides of Presentation “C++11 (C++0x) in Visual C++ 2010″
A couple of months ago, I gave a presentation about C++11/C++0x features supported in Visual C++ 2010 for software engineers at my company. You can now download the slides.

Tag Archive for Visual Studio 2010Slides of Presentation “C++11 (C++0x) in Visual C++ 2010″A couple of months ago, I gave a presentation about C++11/C++0x features supported in Visual C++ 2010 for software engineers at my company. You can now download the slides. ![]() Visual Studio 2010 Service Pack 1Microsoft has released Visual Studio 2010 Service Pack 1. Visual Studio 2010 SP 1 BetaMicrosoft has released Visual Studio 2010 SP1 Beta. It’s available right now for MSDN subscribers and will be available to everyone on Thursday. It includes a new help viewer that I mentioned in my previous blog entry and “Win7-specific MFC APIs to support use of Direct2D, DirectWrite, and Windows Animation Technologies”. I can’t wait to try those out Get more details here. Visual Studio 2010 SP1 – Help ViewerMicrosoft is planning to include a new help viewer with Visual Studio 2010 SP1, which is long overdue You can see a presentation here. Free eBooks Related to Microsoft TechnologiesHere is a list of free eBooks related to Microsoft technologies.
Enjoy Visual Studio 2010 Feature Pack 2 ReleasedMicrosoft released Visual Studio 2010 Feature Pack 2 to MSDN subscribers which extends testing, code visualization and modeling capabilities in VS2010. Its main features are more advanced platform and tool support for both manual and automated testing scenarios. It allows you to better control your Silverlight 4 testing scenarios and UI testing code. Feature Pack 2 includes the following C++ related additions: Feature Pack 2 is cumulative and includes Feature Pack 1. Windows Phone 7 Final Developers Tools ReleasedMicrosoft has released the final version of the Windows Phone 7 developers tools
Download the tools here. New Windows Phone Developer Tools CTP is Compatible with Visual Studio 2010 RTMMicrosoft has just released a refreshed version of the Windows Phone Developer Tools CTP. The biggest change is that it is now compatible with the final version of Visual Studio 2010 RTM The CTP includes the following components:
Get it here. Visual Studio 2010 RTM not Compatible with the Windows Phone Developer Tools CTPA few days ago, Microsoft released Visual Studio 2010. Unfortunately, for the time being, this final version is not compatible with the Windows Phone Developer Tools CTP that was released a while ago. According to Charlie Kindel:
The Windows Phone Developer Tools are being updated and a version that supports the final version of Visual Studio 2010 will be released in a few weeks. In the meantime, Charlie Kindel recommends the following if you need the retail version of Visual Studio 2010 together with the Windows Phone Developer Tools CTP:
Note that installing the Windows Phone Developer Tools CTP to a VPC image is not supported. Register here to be informed when an updated version of the Windows Phone Developer Tools is released. Microsoft Visual Studio 2010 and .NET Framework 4 Released
Today, Microsoft released Visual Studio 2010 and the .NET Framework 4. A lot of new features are included. One of them is a completely new editor.
Visual C++ 2010 also includes a lot of new features, some of them are:
Read the full press release here or watch the keynote. Later this week, Silverlight 4 will also be released to the web (RTW). At that time, an update for Visual Studio 2010 will also become available that will allow you to develop applications using Silverlight 4. Overview of New Features in Visual C++ 2010A friend of mine, Marius Bancila, wrote several blog posts with details about new features in Visual C++ 2010. He touches the following features:
You can read his posts here. They give you a good idea of new features in VC++ 2010 Breaking Change for RValue References in Visual Studio 2010 RCThe Release Candidate of Visual Studio 2010 has changed the behaviour of RValue references slightly compared to the implementation in the Visual Studio 2010 beta versions. This is because the C++0x standard commitee has changed the RValue reference feature a bit and Visual Studio 2010 RC has incorporated those standard changes. Unfortunately, this might lead to compiler errors when you try to build code that is following the old standard. Let me give an example. Previously using a beta version of Visual Studio 2010 that was using the old C++0x standard, the following code would compile without any problems. #include <iostream> using namespace std; However, when trying to compile this using the latest release candidate of Visual Studio 2010, you will get the following errors: rvalue_test.cpp(18): error C2664: 'increment' : cannot convert parameter 1 from 'int' to 'int &&' You cannot bind an lvalue to an rvalue reference rvalue_test.cpp(21): error C2664: 'increment' : cannot convert parameter 1 from 'int' to 'int &&' You cannot bind an lvalue to an rvalue reference These are related to the lines that are trying to increment a and b. Incrementing an expression or a literal still works as before. To get rid of those errors, you need to convert the lvalue to an rvalue. You can use the std::move function for this as shown in red below. #include <iostream> using namespace std; This now compiles without any errors and produces the following output: value = 10 a=11, b=20, result=11 value = 20 a=11, b=21, result=21 value = 32 a=11, b=21, result=33 value = 3 a=11, b=21, result=4 Now, it again works as expected Visual Studio 2010 Licensing White PaperMicrosoft has released a white paper for Visual Studio 2010 licensing which provides an overview of the complete Visual Studio 2010 product line. The paper also gives a number of example deployment scenarios and the licensing requirements for those. Client editions in the Visual Studio 2010 product line include:
(Visual Studio 2010 products can be purchased without an MSDN subscription in certain channels.) Server products in the Visual Studio 2010 product line include:
Volume licensing customers who need a definitive guide to licensing terms and conditions should reference the Microsoft Licensing Product Use Rights (PUR) and applicable licensing agreements. For retail customers, the license terms are specified in the End User Licensing Agreement (EULA) included with the product. Visual Studio 2010 and .NET Framework 4 Release CandidateMicrosoft has released the Release Candidate version of Visual Studio 2010 and the .NET Framework 4. See Scott Guthrie blog post about it. Right now it’s available for MSDN subscribers. Two important things to know (from Scott Guthrie blog post):
Visual Studio 2010 and .NET Framework 4 Beta 2Visual Studio 2010 and .NET Framework 4 Beta 2 are now available. The final version is scheduled for 22nd of March 2010. I’m looking forward to it For Visual C++ developers there are lots of new things to look forward to, like parallel programming, MFC ribbon resource editor, easy application local deployment model etc etc… When you use the .NET Framework you will apparently be able to have deployments with up to 81% reduction in the framework size by using the Client Profile. According to the press release:
The product lineup is simplified with the following versions:
|