Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in using

Can C++ free functions be aliased?

Error with: using System.Data;

using namespace System; in Visual Studio 2013

Garbage Collection and Using - Why is memory not released after `using{}` block?

Using statement with changing used variable

c# using using-statement

Response.Redirect("") inside "using{ }"

Using disposed SPSite and SPWeb objects

Is there a guarantee on the order in which the Dispose() method is called when using multiple using statements for the same scope in C#?

Does a using block guarantee that the object will not be disposed until the end of the block?

c# idisposable using

"Using" directive fails within template

c++ templates using

How should I deal with null objects in a using block?

c# .net using code-readability

C# using statement application scope

c# using

Reducing number of using in C#

Using `using(...)` effectively useless and/or inefficient?

c# idisposable using

C++ `using` command for type alias in template class

c++ templates c++11 using

Using statement in C# without implementing Dispose Method

c# .net c#-4.0 using

Why do I get error "'cout' in namespace 'std' does not name a type" when I use "using cout = std::cout;"?

c++ c++11 using type-alias

Are nested Using statements useful?

c# vb.net using

using vs. typedef for std::vector::iterator

c++ c++11 using stdvector

Whether should I use try{} or using() in C#?

c# using try-catch