Showing category results for C++

Jan 16, 2014
Post comments count0
Post likes count0

Exception Boundaries

James McNellis

In modern C++, exceptions are the preferred method of runtime error reporting and handling. Yes, there are some cases where other forms of error reporting may be more appropriate—error codes, for example—but generally exceptions are preferred. When building a brand new library or application using C++, it's best to write exception-safe ...

C++
Jan 15, 2014
Post comments count0
Post likes count0

Creating a C++ Project from a PDB file: PDB Project [[Version 2.0]]

Eric Battalio

We are thrilled to announce version 2.0 of the PDB Project extension on the Visual Studio Gallery. PDB Project, as the name suggests, takes the information contained in a .pdb file to create a C++ project. The Information extracted from the .pdb includes both the source files (.c, .cpp) used for building, as well as the sources of the linked librar...

C++
Jan 14, 2014
Post comments count0
Post likes count0

Kinect for Windows C++ Samples

Eric Battalio

Kinect for Windows enables developers like you to create applications that allow users to interact naturally with the computer by gesturing and speaking. You probably already know this. But did you know there are plenty of samples written in C++ using Direct 3D and Direct 2D and other DirectX stuff? Grab a Kinect and the Kinect SDK and build ...

C++
Jan 9, 2014
Post comments count0
Post likes count0

Code Debugging Content in Community

Eric Battalio

A few days ago, we called out some of the great debugging topics on the Microsoft Developer Network (MSDN) Library. Here are some excellent resources outside of the MSDN Library (in no particular order except the last one): If you know of additional resources, add them to the comments (or send them to me, ebattali@microsoft.com)&...

C++
Jan 7, 2014
Post comments count0
Post likes count0

Code Debugging Topics on MSDN

Eric Battalio

The MSDN Library is a rich source of information about Microsoft products and technologies including Visual Studio and Visual C++. This post calls out some of the great code debugging topics available for Visual C++ native code developers.The best starting point for (re)visiting debugging topics is the Debugger Roadmap. It contains links to many di...

C++
Jan 2, 2014
Post comments count0
Post likes count0

Weathr, a 3D Weather App now on CodePlex

Eric Battalio

Welcome to 2014. May all your C++ code run perfectly! Thomas Petchel wanted really to explore the intersection among C++, DirectX, and XAML in the context of a Windows Store app. The result? Weathr, a 3D weather app for windows 8.1. It is a smooth, responsive app that shows weather information for different locations. To run it, you need Windo...

C++
Dec 20, 2013
Post comments count1
Post likes count0

Asynchronous programming in C++ using resumable functions and await

Raman Sharma

As you know we recently released the Visual C++ Compiler November 2013 CTP. One of the many features in this CTP is the support for resumable functions and await. In this blog post, I want to touch upon some examples where these features make the experience of programming with asynchronous API much simpler. Example 1 The first example we are goin...

C++
Dec 13, 2013
Post comments count0
Post likes count0

Developer Activities Survey Results Overview

Eric Battalio

Hi there! A few months ago, some of you took a survey on C++ developer activities, the results of which will be used to hone in on which areas to improve for the next release of Visual Studio. I wanted to take some time to share with you the preliminary results of the survey. Without further ado, out of the 47 tasks included on the survey, here's w...

C++
Dec 6, 2013
Post comments count0
Post likes count0

Performance++ with Visual C++ 2013

Ankit Asthana

For Visual Studio 2013 we have continued to improve the analysis performed by the Visual C++ compiler so it can produce code that runs faster than before. In this blog we highlight some of the many improvements that Visual Studio 2013 has in store for you. This blog is intended to provide you an overview on all the goodies we have added recently wh...

C++
Dec 5, 2013
Post comments count0
Post likes count0

Visual C++ in 2013 and Beyond – Q&A

Eric Battalio

Did you watch Charles Torre's discussion with Ale Contenti, Tarek Madkour and Herb Sutter at the Visual Studio 2013 Virtual Launch last month? The team answered a number of questions from Charles and the community on topics ranging from refactoring to PEX. In case you missed the video (or missed some of the answers), the questions and answers are p...

C++