Showing results for March 2008 - C++ Team Blog

Mar 20, 2008
0
0

Protecting Your Code with Visual C++ Defenses by Michael Howard

Visual CPP Team
Visual CPP Team

The March 2008 issue of MSDN Magazine includes a nice article about protecting your C/C++ programs. You can check out the article at http://msdn2.microsoft.com/en-us/magazine/cc337897.aspx.Thanks,Visual C++ Team

C++
Mar 10, 2008
0
0

Visual Studio 2008 Enum Bit Flags Visualization

Visual CPP Team
Visual CPP Team

In Visual Studio 2008 we introduced a useful, but not very well known, feature in the Native Debugger for visualizing enum bit flags. Consider the following code: enum x { bit_none = 0,       bit1 = 1,       bit2 = (1 << 1),       bit3 = (1 << 2),...

C++
Mar 6, 2008
0
0

Approaches to Testing

Visual CPP Team
Visual CPP Team

My name is Martha Wieczorek and I’m a Software Design Engineer in Test on the Visual C++ IDE team. I would like to share with you some different testing approaches that we use on the team and talk about the advantages/disadvantages of each approach based on my experience. Testing effectively and efficiently becomes more and more challeng...

C++