Tagged Questions
"using" is a keyword in the C# programming language.
73
votes
12answers
12k views
What is the best workaround for the WCF client `using` block issue?
I like instantiating my WCF service clients within a using block as it's pretty much the standard way to use resources that implement IDisposable:
using (var client = new SomeWCFServiceClient())
{
...
61
votes
12answers
6k views
Why should you remove unnecessary C# using directives?
For example, I rarely need:
using System.Text;
but it's always there by default. I assume the application will use more memory if your code contains unnecessary using directives. But is there ...
59
votes
8answers
1k views
Is there a situation in which Dispose won't be called for a Using block
This was a telephone interview question I had:
Is there a time when Dispose will not be called on an object who's scope is declared by a using block?
My answer was no - even if an exception happens ...
56
votes
9answers
14k views
Should I Dispose() DataSet and DataTable?
DataSet and DataTable both implement IDisposable, so, by conventional best practices, I should call their Dispose() methods.
However, from what I've read so far, DataSet and DataTable don't actually ...
26
votes
14answers
4k views
Nested using statements in C#
I am working on a project and have to compare two files and see if they match eachother excatly.
My first draft before alot of error checking and validation came up with:
DirectoryInfo di = new ...
26
votes
8answers
4k views
Why remove unused using directives in C#?
I'm wondering if there are any reasons (apart from tidying up source code) why developers use the "Remove Unused Usings" feature in Visual Studio 2008?
21
votes
3answers
527 views
Why does C# define two different uses for `using`?
More a question out of curiosity than anything, but why does C# define two different "purposes" for the keyword using? On one hand, it's a directive...
used to create an alias for a
namespace ...
20
votes
5answers
2k views
C# using statement with a null object
Is it safe to use the using statement on a (potentially) null object?
I.e. consider the following example:
class Test {
IDisposable GetObject(string name) {
// returns null if not found
...
20
votes
4answers
2k views
Curious C# using statement expansion
I've run ildasm to find that this:
using(Simple simp = new Simple())
{
Console.WriteLine("here");
}
generates IL code that is equivalent to this:
Simple simp = new ...
20
votes
7answers
9k views
Does Stream.Dispose always call Stream.Close (and Stream.Flush)
If I have the following situation:
StreamWriter MySW = null;
try
{
Stream MyStream = new FileStream("asdf.txt");
MySW = new StreamWriter(MyStream);
MySW.Write("blah");
}
finally
{
if ...
17
votes
10answers
1k views
Is there a better deterministic disposal pattern than nested “using”s in C#?
In C#, if I want to deterministically clean up non-managed resources, I can use the "using" keyword. But for multiple dependent objects, this ends up nesting further and further:
using (FileStream ...
16
votes
8answers
2k views
Do I have to Close() a SQLConnection before it gets disposed?
Per my other question here about Disposable objects, should we call Close() before the end of a using block?
using (SqlConnection connection = new SqlConnection())
using (SqlCommand command = new ...
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
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
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
11answers
750 views
Why is 'using' improving C# performances
It seems that in most cases the C# compiler could call Dispose() automatically. Like most cases of the using pattern look like:
public void SomeMethod()
{
...
using (var foo = new Foo())
...
13
votes
6answers
1k views
“using” keyword in java
In Java is there an equivalent to the C# "using" statement allowing to define a scope for an object:
using (AwesomeClass hooray = new AwesomeClass())
{
// Great code
}
13
votes
14answers
2k views
When should I use “using” blocks in C#?
Are there particular instances where I should (or shouldn't?) be using "using" blocks:
using(SomeType t = new SomeType()){
...
}
13
votes
8answers
952 views
Do you prefer explicit namespaces or 'using' in C++?
When using C++ namespaces, do you prefer to explicitly name them, like this:
std::cout << "Hello, world!\n";
Or do you prefer using namespace:
using namespace std;
cout << "Hello, ...
12
votes
2answers
274 views
Confused using “using” Statement C#
According to MSDN Library
using Statement (C# Reference)
Defines a scope, outside of which an object or objects will be disposed.
But I got this code posted here by some user and I got confused ...
12
votes
2answers
1k views
yield return statement inside a using() { } block Disposes before executing
I've written my own custom data layer to persist to a specific file and I've abstracted it with a custom DataContext pattern.
This is all based on the .NET 2.0 Framework (given constraints for the ...
12
votes
5answers
3k views
Using statement and try-catch()-finally repetition?
The using(...) statement is syntactic sugar for try{} finally {}.
But if I then have a using statement like below:
using (FileStream fs = File.Open(path))
{
}
Now I want to catch the exceptions ...
11
votes
6answers
1k views
Getting rid of nested using(…) statements
Sometimes I need to use several disposable objects within a function. Most common case is having StreamReader and StreamWriter but sometimes it's even more than this.
Nested using statements quickly ...
11
votes
12answers
1k views
What requires me to declare “using namespace std;”?
This question may be a duplicate, but I can't find a good answer. Short and simple, what requires me to declare
using namespace std;
in C++ programs?
11
votes
9answers
795 views
Standard convention for using “std”
Exact Duplicate: Do you prefer explicit namespaces or ‘using’ in C++?
Which of these is a preferred convention for using any namespace?
using namespace std;
or
using std::cin;
using ...
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
3answers
131 views
What are the differences between typedef and using?
What are the differences between using
typedef Some::Nested::Namespace::TypeName TypeName;
or
using Some::Nested::Namespace::TypeName;
to provide the shorthand TypeName in the local scope?
9
votes
4answers
406 views
What does a leading :: mean in “using namespace ::X” in C++
can somebody explain me the difference between the following namespace usages:
using namespace ::layer::module;
and
using namespace layer::module;
What causes the additional :: before layer?
9
votes
4answers
322 views
Why “using namespace X;” is not allowed inside class/struct level?
class C {
using namespace std; // error
};
namespace N {
using namespace std; // ok
}
int main () {
using namespace std; // ok
}
Edit: Want to know motivation behind it.
9
votes
2answers
274 views
Yield return inside usings
If I recall correctly that when I used yield inside using SqlConnection blocks I got runtime exceptions.
using (var connection = new SqlConnection(connectionString))
{
var command = new ...
9
votes
3answers
185 views
Is modifying a value type from within a using statement undefined behavior?
This one's really an offshoot of this question, but I think it deserves its own answer.
According to section 15.13 of the ECMA-334 (on the using statement, below referred to as resource-acquisition):
...
9
votes
5answers
2k views
In LINQ-SQL, wrap the DataContext is an using statement - pros cons
Can someone pitch in their opinion about pros/cons between wrapping the DataContext in an using statement or not in LINQ-SQL in terms of factors as performance, memory usage, ease of coding, right ...
9
votes
4answers
650 views
Can I undo the effect of “using namespace” in C++?
With using namespace I make the whole contents of that namespace directly visible without using the namespace qualifier. This can cause problems if using namespace occurs in widely used headers - we ...
9
votes
3answers
2k views
using various types in a using statement (C#)
Since the C# using statement is just a syntactic sugar for try/finally{dispose} why does it accept multiple objects ONLY IF THEY ARE OF THE SAME TYPE?
I don't get it since all they need to be is ...
9
votes
2answers
966 views
How does LINQ defer execution when in a using statement
Imagine I have the following:
private IEnumerable MyFunc(parameter a)
{
using(MyDataContext dc = new MyDataContext)
{
return dc.tablename.Select(row => row.parameter == a);
}
}
...
8
votes
5answers
182 views
c++ using namespace::function
consider the following C++ code.
namespace A {
void f() { // first function
}
void f(int) { // second function
}
}
...
using A::f; // introduces both functions
Is there a way to ...
8
votes
2answers
305 views
Defining a Type Alias in C# across multiple files
In C++, it's easy to write something along the lines of:
#ifdef FAST
typedef Real float;
#endif
#ifdef SLOW
typedef Real double;
#endif
#ifdef SLOWER
typedef Real quad;
#endif
In some common ...
8
votes
9answers
379 views
Is it possible to force the use of “using” for disposable classes?
I need to force the use of "using" to dispose a new instance of a class.
public class MyClass : IDisposable
{
...
}
using(MyClass obj = new MyClass()) // Force to use "using"
{
}
8
votes
4answers
243 views
Are there any side effects of returning from inside a using() statement?
Returning a method value from inside a using statement that gets a DataContext seems to always work fine, like this:
public static Transaction GetMostRecentTransaction(int singleId)
{
using (var ...
8
votes
8answers
615 views
What are the benefits of maintaining a “clean” list of using directives in C#?
I know VS2008 has the remove and sort function for cleaning up using directives, as does Resharper. Apart from your code being "clean" and removing the problem of referencing namespaces which might ...
8
votes
8answers
35k views
WCF Errors using WCFTestClient to test a simple WCF Web Service
When I try to test the AutoLotWCFService using "wcftestclient", I get the following error. What am I doing wrong? Any insight will help. This is a simple Web Service that has wshttpbinding with ...
7
votes
3answers
310 views
what is the expected behavior?
Below is a purely academically invented class hierarchy.
struct X{
void f1();
void f2();
void f3();
};
struct Y : private X{
void f4();
};
struct Z : X{
};
struct D ...
7
votes
8answers
672 views
Detecting a Dispose() from an exception inside using block
I have the following code in my application:
using (var database = new Database()) {
var poll = // Some database query code.
foreach (Question question in poll.Questions) {
foreach ...
7
votes
3answers
702 views
Why can't I put a “using” declaration inside a class declaration?
I understand the troubles you can get into when you put a using declaration inside a header file, so I don't want to do that. Instead I tried to put the using (or a namespace foo =) within the class ...
7
votes
5answers
246 views
Difference between 'using' and scoping?
What is the difference between the following two snippets of code:
using (Object o = new Object())
{
// Do something
}
and
{
Object o = new Object();
// Do something
}
I have started ...
7
votes
7answers
2k views
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?
6
votes
8answers
283 views
Struct and IDisposable
I wonder why does it not compile?
public static void Main(string[] args)
{
using (MyStruct sss = new MyStruct())
{
sss.s = "fsdfd";// Cannot modify members of 'sss' because it is a ...
6
votes
1answer
116 views
Do you need to call flush() on a Stream if you are using “using statement”?
I am not sure whether I need to call flush if I write something like this:
using (File stream...)
using (CryptoStream..)
using (BinaryWriter...)
{
//do something
}
Is this always automatically ...
6
votes
6answers
271 views
“Using” vs [DllImport]?
I'm a noob obviously.
I was wondering what is the very top most declared references and why we still need to use DllImport? I'm talking C#.
Thanks,