0
votes
2answers
17 views
How can disposable class detect whether there is an exception in progress?
I have a class that implements IDisposable
public class Foo: IDisposable {
public void Dispose() {
// do the disposing
}
}
Then I have a method that uses the cla …
7
votes
7answers
302 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 ther …
1
vote
3answers
44 views
Visual Studio 2008 automatically add namespces like Eclipse
Does VS2008 have a feature akin to Eclipse's ability to automatically add import declarations for undefined namespaces?
2
votes
2answers
18 views
Easily select default usings for project namespaces and subamespaces
Is there an easy way in Visual Studio to assign default usings when i make a new file in a certain (sub)namespace in my project?
1
vote
2answers
83 views
Using all overloads of the base class
When a subclass overrides a baseclass's method, all of the baseclass's overloads are not available from the subclass. In order to use them there should be added a using BaseClass:: …
0
votes
1answer
32 views
Does HttpResponse work in a “using” block with out a explicit response.close()
Hi all,
I was trying to get clarification on this :
Method-1:
Dim request = CreateRequest(uri) //some uri
Dim response = DirectCast(request.GetResponse, HttpWebResponse)
respons …
0
votes
2answers
81 views
using namespace issue
When I use the following
#include <map>
using namespace LCDControl;
Any reference to the std namespace ends up being associated with the LCDControl name space.
For insta …
0
votes
6answers
284 views
What is the point of having using blocks in C# code? [closed]
I see loads of code snippets with the following Syntax
using (RandomType variable = new RandomType(1,2,3))
{
// A bunch of code here.
}
why not just declare the variable and …
0
votes
2answers
53 views
Using Statement with more than one system resource
I have used the "using" statement in both C# and VB. I agree with all the critics regarding nesting using statements (C# seems well done, VB not so much)
So with that in mind I w …
3
votes
4answers
316 views
C# - Location of Using Statements
One thing I have noticed a lot of back and forth on is where using statements should be placed in a C# code file- whether its in the outermost scope or inside a namespace. I unders …
17
votes
10answers
2k 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 …
9
votes
6answers
267 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 deter …
4
votes
7answers
209 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(.. …
2
votes
4answers
136 views
Removing redundant using statements
Does anyone know of a tool to remove redundant using statements from classes, or a whole solution?
I'm using the Refactor! addin which has a "move type to separate file" smart tag …
3
votes
8answers
313 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 …
