Top "Using" questions

"using" is a keyword in some programming languages (C++, C#, VB.

How do you resolve .Net namespace conflicts with the 'using' keyword?

Here's the problem, you include multiple assemblies and add 'using namespaceX' at the top of your code file. Now you …

.net namespaces using
What instrument should I use in Xcode to see FPS?

Some time ago I used instruments to see the FPS of an iPad application in Xcode 3. Now I'm using Xcode 4 …

objective-c xcode instruments using frame-rate
How to get project wide Remove and Sort Usings for Visual Studio 2010?

We had the Power Commands for Visual Studio 2008 that add a context menu command that Removed Unused Usings and Sorted …

visual-studio-2010 plugins using powercommands
Using a .lib in visual studio 2012 (C++)

I have a .lib static library. I've linked it under the Linker settings 'Additional Library Directories', and 'Additional Dependencies', as …

c++ static-libraries using function-call .lib
What's this C# "using" directive?

I saw this C# using statement in a code example: using StringFormat=System.Drawing.StringFormat; What's that all about?

c# using using-directives
C# CA2000:Dispose objects before losing scope using FileStream/XmlTextReader

I have lots of code like this: FileStream fs = File.Open(@"C:\Temp\SNB-RSS.xml", FileMode.Open); using (XmlTextReader reader = …

c# dispose using ca2000 ca2202
Yield return inside usings

If I recall correctly that when I used yield inside using SqlConnection blocks I got runtime exceptions. using (var connection = …

c# .net exception using yield-return
What does Using(.....){...} mean

Possible Duplicates: Using the using statment in c# What is the C# Using block and why should I use it? …

c# idisposable using using-statement
Integrating bank accounts

Is there any API to integrate bank accounts into a .NET application? I am looking to provide the user an …

c# using integrate accounts bank
Is there any need to close a DbConnection if a using clause is used?

Possible Duplicate: Will a using block close a database connection? Is db.Close() unnecessary in the following? using (DbConnection db = …

c# .net ado.net using dbconnection