"using" is a keyword in some programming languages (C++, C#, VB.
I wrote the below code in order to explain my issue. If I comment the line 11 (with the keyword "using"), …
c++ oop inheritance usingPer my other question here about Disposable objects, should we call Close() before the end of a using block? using (…
c# asp.net using sqlconnection sqlcommandI'm running an instance on debian-7-wheezy and I'm sort of new to the Google Compute Engine. I have looked …
ssh ftp sftp using google-compute-engineIt has been my understanding that the using statement in .NET calls an IDisposable object's Dispose() method once the code …
c# .net vb.net using idisposableI just want to know is it safe/ good approach to call return inside a using block. For ex. using(…
c# return usingIs it safe to use the using statement on a (potentially) null object? Consider the following example: class Test { IDisposable …
c# idisposable usingWhen using a memory stream in a using statement do I need to call close? For instance is ms.Close() …
c# using memorystream using-statementDoes the using catch the exception or throw it? i.e. using (StreamReader rdr = File.OpenText("file.txt")) { //do stuff } …
c# exception using using-statementJon Skeet made a comment (via Twitter) on my SOApiDotNet code (a .NET library for the pre-alpha Stack Overflow API): @…
c# httpwebrequest using httpwebresponse using-statementI know that Using statement disposes out the object that is being created. Like if I wanted to do something …
c# using