Top "Visual-studio-2010" questions

Visual Studio 2010 is an integrated development environment (IDE) from Microsoft.

The type or namespace name could not be found

I have a C# solution with several projects in Visual Studio 2010. One is a test project (I'll call it "PrjTest"), …

c# visual-studio-2010 reference using-statement using-directives
How to find server name of SQL Server Management Studio

I installed Microsoft SQL Server 2008. When I start SQL Server Management Studio (SSMS), I get the Connect to Server login …

visual-studio-2010 sql-server-2008 ssms
Writing to output window of Visual Studio

I am trying to write a message to the output window for debugging purposes. I searched for a function like …

c# visual-studio-2010 visual-studio debugging
Is there a format code shortcut for Visual Studio?

In Eclipse there is a shortcut, Ctrl+Shift+F, that re-indents code and fixes comments and blank lines. Is there …

c# visual-studio-2010 visual-studio visual-studio-2012 visual-studio-2013
Type or namespace name does not exist

I have a WCF Data Service project built with Visual Studio 2010, which was working fine. All of a sudden, it …

c# .net visual-studio-2010 visual-studio
What is "stdafx.h" used for in Visual Studio?

A file named stdafx.h is automatically generated when I start a project in Visual Studio 2010. I need to make …

visual-studio visual-studio-2010 visual-c++ cross-platform stdafx.h
Getter and Setter declaration in .NET

I was wondering what were the differences between those declaration of getters and setters and if there is a preferred …

c# .net visual-studio-2010
Interop type cannot be embedded

I am creating a web application on the .NET 4.0 framework (beta2) in C#. When I try to use a assembly …

c# visual-studio-2010 visual-studio c#-4.0
push_back vs emplace_back

I'm a bit confused regarding the difference between push_back and emplace_back. void emplace_back(Type&& _Val); …

c++ visual-studio-2010 stl c++11 move-semantics