Tagged Questions

A `using` statement is a C# language feature that simplifies deterministic cleanup of disposable resources.

learn more… | top users | synonyms

31
votes
12answers
6k views

Dealing with .NET IDisposable objects

I work in C#, and I've been pretty lax about using using blocks to declare objects that implement IDisposable, which you're apparently always supposed to do. However, I don't see an easy way of ...
18
votes
9answers
791 views

Is C#'s using statement abort-safe?

I've just finished reading "C# 4.0 in a Nutshell" (O'Reilly) and I think it's a great book for a programmer willing to switch to C#, but it left me wondering. My problem is the definition of using ...
17
votes
4answers
11k views

the type or namespace name could not be found

I have a C# solution composed of several projects in Visual Studio 2010. One is a "Test" project (I'll call it "PrjTest"), the other is a Windows Forms Application project (I'll call it "PrjForm"). ...
16
votes
20answers
4k views

Uses of “using” in C#

User kokos answered the wonderful Hidden Features of C# question by mentioning the using keyword. Can you elaborate on that? What are good uses of using?
15
votes
8answers
4k views

Why use a using statement with a SqlTransaction?

I've been running into some problems concerning a SqlTransaction I'm using in my code. During my Googling I see many people using a using statement with a SqlTransaction. What is the benefit and/or ...
15
votes
16answers
18k views

C# using statement catch error

I am just looking at the using statement, I have always known what it does but until now not tried using it, I have come up with the below code: using (SqlCommand cmd = new ...
14
votes
6answers
625 views

Bad practice? Non-canon usage of c#'s using statement

C# has the using statement, specifically for IDisposable objects. Presumably, any object specified in the using statement will hold some sort of resource that should be freed deterministically. ...
14
votes
12answers
3k views

C# “Using” Syntax

Does the using catch the exception or throw it? i.e. using (StreamReader rdr = File.OpenText("file.txt")) { //do stuff } If the streamreader throws an exception is it caught by using or thrown so ...
13
votes
3answers
2k views

How to handle WCF exceptions (consolidated list with code)

I'm attempting to extend this answer on SO to make a WCF client retry on transient network failures and handle other situations that require a retry such as authentication expiration. Question: What ...
13
votes
6answers
338 views

Why would you use the using statement this way in ASP.NET?

Refactoring some code again. Seeing some of this in one of the ASP.NET pages: using (TextBox txtBox = e.Row.Cells[1].FindControl("txtBox") as TextBox) { } There is no need to dispose txtBox, ...
12
votes
5answers
475 views

What happens if i return before the end of using statement? Will the dispose be called?

I've the following code using(MemoryStream ms = new MemoryStream()) { //code return 0; } The dispose() method is called at the end of using statement braces } right? Since I return ...
12
votes
2answers
477 views

C#, weird optimization

I'm trying to read my compiled C# code. this is my code: using(OleDbCommand insertCommand = new OleDbCommand("...", connection)) { // do super stuff } But! We all know that a using gets ...
12
votes
4answers
843 views

C# exiting a using() block with a thread still running onthe scoped object

What happens to a thread if it is running a method in an object that was freed by exiting a using block? Example: using (SomeObject obj = new SomeObject ()) { obj.param = 10 ; ...
12
votes
3answers
3k views

Will a using statement rollback a database transaction if an error occurs?

I've got an IDbTransaction in a using statement but I'm unsure if it will be rolled back if an exception is thrown in a using statement. I know that a using statement will enforce the calling of ...
11
votes
5answers
353 views

Formatting/indentation for using statements (C#)

When it comes to using statements in C# (not to be confused with using directives that import namespaces), Visual Studio doesn't indent single-line code that follows if no braces are employed. This is ...
11
votes
7answers
555 views

Why doesn't 'using' have a catch block?

I understand the point of "using" is to guarantee that the Dispose method of the object will be called. But how should an exception within a "using" statement be handled? If there is an exception, I ...
11
votes
14answers
1k views

When are C# “using” statements most useful?

So a using statement automatically calls the dispose method on the object that is being "used", when the using block is exited, right? But when is this necessary/beneficial? For example let's say ...
10
votes
2answers
282 views

What happens when 'return' is called from within a 'using' block?

If I have a method with a using block like this... public IEnumerable<Person> GetPersons() { using (var context = new linqAssignmentsDataContext()) { return ...
10
votes
5answers
750 views

returning in the middle of a using block

Something like: using (IDisposable disposable = GetSomeDisposable()) { //..... //...... return Stg(); } I believe it is not a proper place for a return statement, is it?
9
votes
13answers
5k views

using statement vs try finally

I've got a bunch of properties which I am going to use read/write locks on. I can implement them either with a try finally or a using clause. In the try finally I would acquire the lock before the ...
8
votes
1answer
174 views

Is there any research on (or better use of) of RAII in GC languages?

Note: Object Lifetime RAII not using/with block scope RAII It seems like its possible using an extra gc category, short lived objects(check gc category somewhat frequently), long lived objects(check ...
8
votes
3answers
290 views

Closing SqlConnection and SqlCommand c#

In my DAL I write queries like this: using(SQLConnection conn = "connection string here") { SQLCommand cmd = new ("sql query", conn); // execute it blah blah } Now it just occurred to me ...
8
votes
1answer
217 views

Using Reflection.Emit to emit a “using (x) { … }” block?

I'm trying to use Reflection.Emit in C# to emit a using (x) { ... } block. At the point I am in code, I need to take the current top of the stack, which is an object that implements IDisposable, ...
8
votes
3answers
209 views

.NET/C# - Disposing an object with the 'using' statement

Suppose I have a method like so: public byte[] GetThoseBytes() { using (System.IO.MemoryStream ms = new System.IO.MemoryStream()) { ms.WriteByte(1); ms.WriteByte(2); ...
8
votes
7answers
409 views

Best practice regarding returning from using blocks

Which way is better practice: return a value from a method inside an using statement or declare a variable before, set it inside and return it after? public int Foo() { using(..) { return ...
7
votes
3answers
235 views

“using” keyword for base class variable

I am going over the WildMagic 5 engine (www.geometrictools.com) where the Vector<> class is inheriting from a Tuple<> class which has an array of a particular size, named mTuple[] (set by a ...
7
votes
3answers
202 views

Why c# don't let to pass a using variable to a function as ref or out [closed]

Possible Duplicate: Passing an IDisposable object by reference causes an error? Why doesn't C# allow passing a variable from a using block to a function as ref or out? This is my code: ...
7
votes
7answers
530 views

try/catch + using, right syntax

Which one: using (var myObject = new MyClass()) { try { // something here... } catch(Exception ex) { // Handle exception } } OR try { using (var myObject = new ...
7
votes
3answers
307 views

C# Using keyword- nested in single line

Usually I was doing something like that (just a example): using (Stream xmlStream = client.OpenRead(xmlUrl)) { using (XmlTextReader xmlReader = new XmlTextReader(xmlStream)) { } } Isn't ...
7
votes
5answers
563 views

What does using(object obj = new Object()) mean?

What does this statement means in C#? using (object obj = new object()) { //random stuff }
7
votes
5answers
570 views

How to determine whether a .NET exception is being handled?

We're investigating a coding pattern in C# in which we'd like to use a "using" clause with a special class, whose Dispose() method does different things depending on whether the "using" body was ...
7
votes
4answers
960 views

Identify IDisposable objects

i have to review a code made by some other person that has some memory leaks. Right now i'm searching the disposable objects to enclause them with the using statement and i would like to know if there ...
6
votes
5answers
202 views

Using Statements vs Namespace path? C#

I recently stopped using "using statements" and instead use the full namespace path of any .NET object that I call. Example: using System; namespace QuizViewer { class Class1 { ...
6
votes
2answers
180 views

Use of Process with using block [closed]

Possible Duplicate: What happens if I don't close a System.Diagnostics.Process in my C# console app? As System.Diagnostics.Process inherits from Component which implements IDisposable, ...
6
votes
3answers
333 views

C# 'using' statement question

If you employ a using clause to dispose of a connection, are other items within the clause that implement IDisposable also automatically disposed? If not, how do you handle making sure all IDisposable ...
6
votes
5answers
89 views

Is IDisposeable Called if Un-Handled Exception is Encountered in a Using Statement?

Title says it all, basically if I have the following, will IDisposeable still be called on DisposeableObject, or will the object remain opened because an un-handled exception is encountered? using ( ...
6
votes
7answers
320 views

Can the using statement be replaced by curly braces?

I use the using statement for SqlConnection. It's is good for performance because forces calling Dispose() that simply releases the connection to the pool sooner. However, I realized that object ...
6
votes
5answers
333 views

Occasions when the using statement and IDisposable should never be used

I was reading about this scenario where making use of the C# using statement can cause problems. Exceptions thrown within the scope of the using block can be lost if the Dispose function called at the ...
6
votes
5answers
209 views

A question of style/readability regarding the C# “using” statement

I'd like to know your opinion on a matter of coding style that I'm on the fence about. I realize there probably isn't a definitive answer, but I'd like to see if there is a strong preference in one ...
6
votes
5answers
989 views

Does a C# using statement perform try/finally?

Suppose that I have the following code: private void UpdateDB(QuoteDataSet dataSet, Strint tableName) { using(SQLiteConnection conn = new SQLiteConnection(_connectionString)) { ...
6
votes
8answers
487 views

What does Using(…){…} mean [closed]

Possible Duplicates: Using the using statment in c# What is the C# Using block and why should I use it? Just wondering what this means? I've seen lots of tutorials online that have the ...
6
votes
9answers
1k views

Is there a list of common object that implement IDisposable for the using statement?

I was wondering if there was some sort of cheat sheet for which objects go well with the using statement... SQLConnection, MemoryStream, etc. Taking it one step further, it would be great to even ...
6
votes
2answers
1k views

C#: IEnumerator<T> in a using statement

I was curious to see how the SingleOrFallback method was implemented in MoreLinq and discovered something I hadn't seen before: public static T SingleOrFallback<T>(this IEnumerable<T> ...
6
votes
11answers
365 views

How do I know the best place to use 'using'?

I'm somewhat new to c#, more accustomed to scripting languages. I like the idea of 'using', you instantiate an object, and then you operate within its scope as long as you need it, then you let it ...
6
votes
2answers
846 views

Does Dispose method still get called when Exception is thrown inside of Using statment?

In the example below, is connection going to close and dispose when exception is thrown if it is within using statement? using (var conn = new SqlConnection("...")) { conn.Open(); // stuff ...
6
votes
4answers
751 views

Is there a quick way to remove using statements in C#?

Is there a quick way to determine whether you are using certain namespaces in your application. I want to remove all the unneccessary using statements like using System.Reflection and so on, but I ...
5
votes
8answers
149 views

Trying to understand the 'using' statement better

I have read a couple of articles about the using statement to try and understand when it should be used. It sound like most people reckon it should be used as much as possible as it guarantees ...
5
votes
2answers
177 views

using block swallowing exceptions

I have void foo1() { using(...){...} } void foo2() { using(...){...} } void foo3() { using(...){...} } and I have void foo() { ... backgroundWorker.DoWork += (s, ev) => ...
5
votes
6answers
245 views

I don't quite understand the workings of using/Disposable objects

I asked a question regarding returning a Disposable (IDisposable) object from a function, but I thought that I would muddle the discussion if I raised this question there. I created some sample code: ...
5
votes
6answers
265 views

Using statement question

I have two questions. 1) Should you always use a using statement on a connection? So, I would use it on the connection and then another one on a reader within the connection? So I would be using two ...

1 2 3 4