A `using` statement is a C# language feature that simplifies deterministic cleanup of disposable resources. Not to be confused with the `using` directive (related to namespaces), for which use tag `using-directives`.

learn more… | top users | synonyms

3
votes
3answers
72 views

Should I use a using statement to create a Windows.Forms.Form object?

I've read (on using Statement (C# Reference)) that the using statement should be used to release the resources used by managed types (like File and Font) that use unmanaged resources. So started using ...
9
votes
1answer
99 views

Do using statements and await keywords play nicely in c#

I have a situation where I am making an async call to a method that returns and IDisposable instance. For example: HttpResponseMessage response = await httpClient.GetAsync(new ...
1
vote
1answer
28 views

oracle dynamic sql using params with brackets as table name

I have a table in my schema with brackets in its name (that's a legacy, cannot be modified): CREATE TABLE "Addresses" ("ID" NUMBER(*,0) , "FullAddress" ...
4
votes
2answers
53 views

Is object eligible for garbage collection if it's created within using-statement and not explicitly bound to a reference?

I have this (illustration only) C# code: using( new System.IO.MemoryStream() ) { System.Threading.Thread.Sleep(1000); } Note that here a MemoryStream is created and not explicitly bound to a ...
0
votes
2answers
47 views

Saving/Loading Using()/Try-Catch

I've been digging around the past couple hours on how to implement simple save/load functionality to a game i'm making. The save data is being stored in a text file, during the game the player can ...
1
vote
3answers
113 views

With… End With vs Using in VB.NET

I just found out that like C#, VB.NET also has the using keyword. Until now I thought it didn't have it (stupid of me, I know...) and did stuff like this instead: With New ...
3
votes
5answers
73 views

Correct scope of using using

I'm in a quarrel with a colleague regarding the appropriate scope of the using statement. This is the method in question. public Guid IsServerReachable() { try { WhoAmIResponse whoAmI; ...
2
votes
1answer
69 views

How to mock an object, that is instanciated in a using() block

When reading/writing to a context from Entity Framework I often read, that it is recommended to keep the context's lifecycle as short as possible (one context per unit of work). It makes a lot of ...
3
votes
1answer
57 views

Will the clean-up logic still get called if an exception is thrown from within a using statement?

I have some questions about using the using keyword. I have the following code: try { using (System.Net.WebResponse response = httpWebRequest.GetResponse()) { throw new Exception("Example"); ...
3
votes
4answers
101 views

Multiple variables within same using block [duplicate]

I'm currently using two objects as follows: using (var ms = new MemoryStream()) using (var bw = new BinaryWriter(ms)) { // work with ms and bw, both referenced here } It works "fine" and is in ...
-3
votes
3answers
153 views

Use of C# using keyword in a user defined class [closed]

Everybody knows that using keyword is used when we want to clean up the unmanaged resources. If the class implements IDisposable then we can use using keyword with the object of that class. But if ...
1
vote
4answers
130 views

Benefit/Use of using statement before streamwriter , streamreader [duplicate]

Possible Duplicate: What is the C# Using block and why should I use it? So I've just noticed that at msdn examples and some stackoverflow questions there were answer where the using ...
0
votes
1answer
53 views

Continue processing in spite of unavailable WCF Service

I have the following code courtesy of an answer posted by Jean-Michel Bezeau bool isAlive = false; string fixedAddress = "http://localhost:8732/Design_Time_Addresses/WCFService/mex"; ...
0
votes
3answers
62 views

Using multiple values in a using statement in C#?

In Python you can do something like: with open('filename') as f, something_else(f) as thing: do_thing(thing) and it will do the open bit, then the something_else bit. When the block exits it ...
1
vote
2answers
1k views

Exception of type 'System.OutOfMemoryException' was thrown. C# when using IDataReader

I have an application in which I have to get a large amount of data from DB. Since it failed to get all of those rows (it's close to 2,000,000 rows...), I cut it in breaks, and I run each time the sql ...
0
votes
2answers
38 views

Is using the completed type name in code is faster than a using directive for the whole namespace

For the best website performance is using: (for example) Telerik.Web.UI.RadChart ResultChart = new Telerik.Web.UI.RadChart(); Is faster than : using Telerik.Web.UI; and RadChart ResultChart = ...
2
votes
4answers
63 views

Use of using to dispose resources [duplicate]

Possible Duplicate: Trying to understand the ‘using’ statement better I've really read all other posts, but no one really answers my question. This is my function that returns a table ...
0
votes
0answers
23 views

On NamedPipeClientStream dispose causing IOException

Im using NamedPipeClientStream on local computer. Code is using (var pipe = new NamedPipeClientStream(pipeName)) using (var readStream = new StreamReader(pipe)) using (var ...
1
vote
4answers
146 views

Why isn't “CreateCommand()” part of C# (or at least .NET)?

After successfully going through the initial stages of learning C# in tandem with SQL Server, I discovered that the various tutorials that I used simply got it wrong by declaring a global ...
1
vote
3answers
120 views

C# switch library using with program paremeters

I have a project with two class libraries. I need to switch between them programatically, with application parameters, something like if(arg == "a") using LibraryA; if(arg == "b") using ...
0
votes
3answers
70 views

Can I replace Initialize() and Close() method calls with a using block somehow in this snippet?

Is there way you can suggest to help to get rid of calling the Initialize() and Close() methods and replace it a using block? Or this approach is totally OK? (Idea is to ensure the Writer will be ...
0
votes
4answers
254 views

C#: “using” directive and try/catch block

I know how to use try/catch block in case of database calls and know how to use "using" directive in context of using try/finally construction as well. But, can I mix them? I mean when I use "using" ...
3
votes
5answers
108 views

How to use object initializers with using statements?

Is there any way to refactor this code to not have to use a temporary variable and still use the syntactic sugar associated with object initializers? FrmSomeForm someTempForm = new FrmSomeForm() { ...
1
vote
2answers
216 views

How to call asynchronous wcf method in using statement?

In synchronous model it's simply using (MyServiceClient msc = new MyServiceClient()) { msc.Method(); } but if I must wait to end of this method, and then do something, it can't work private ...
0
votes
0answers
680 views

Web Service after VS 2012 Upgrade

I recently upgrade from VS 2010 to VS 2012 and now I'm in the process of upgrading my solutions and projects. I have a web project that contains two service references. One is a custom web service ...
0
votes
4answers
105 views

using statements

Today I noticed a snippet of code that looks like the one below: public class Test { SqlConnection connection1 = new SqlConnection(ConfigurationManager.ConnectionStrings["c1"].ToString()); ...
-1
votes
3answers
74 views

Returning from method disposes corectly the object? [closed]

If you use the using method instead of lets say FileStream.Close();, will the class dispose correctly? private static string GetString() { using(FileStream fs = new FileStream("path", ...
0
votes
1answer
1k views

SqlCommand (Using Statement / Disposing issue)

Take the following example... Using cn As New SqlConnection(ConnectionString) Try Dim cmd As SqlCommand = New SqlCommand With cmd ...
3
votes
5answers
278 views

Using statement with try catch. What happens to instance from using statement?

If I have a using block surrounding a try catch statement what will happen to the object inside that using statement should the catch fire an exception? Consider the following code: using ...
3
votes
3answers
144 views

Wrapping a Using Block inside of another Using Block - is it overkill?

I have a section of code in my project where I an wrapping a Using Block Inside of Another Using Block, I am wondering is this a good practice or just overkill (Please note I understand that this is a ...
3
votes
2answers
752 views

MemoryStream in Using Statement - Do I need to call close()

When using a memory stream in a using statement do I need to call close? For instance is ms.Close() needed here? using (MemoryStream ms = new MemoryStream(byteArray)) { // stuff ...
0
votes
1answer
355 views

Using statement with a scalar query

Can you show a coding example that has the "Using" statement with a scalar query? I could not find any sample coding for this by searching yet.
0
votes
1answer
45 views

Is there anything that will add extension using statement suggestions in C#?

Is there an add-in or extension for Visual Studio that will do what Ctrl-. does for types/classes. Which is to say that while the cursor is on a type which VS doesn't recognize, and typing Ctrl-. it ...
0
votes
1answer
107 views

Less specific using statements conflicting with more specific ones

Can anyone explain this behavior and what the solution is? I installed Ninject.MVC3 via nuget, this creates a file in the App_Start folder called NinjectWebCommon.cs with the namespace like this: ...
-1
votes
2answers
614 views

using statement for SQL command [closed]

I have for longer than I can remember not used using blocks when doing queries, however I now have an issue with locking tables and it looks like the queries are not disposing properley. However I ...
9
votes
4answers
135 views

How could one refactor code involved in nested usings?

I've got some code that has an awful lot of duplication. The problem comes from the fact that I'm dealing with nested IDisposable types. Today I have something that looks like: public void ...
-1
votes
5answers
379 views

When should I use the using Statement? [duplicate]

Possible Duplicate: What is the C# Using block and why should I use it? I'm converting an old site to C# and I'm not sure when I should be using 'using'. Are there any general guidelines? ...
4
votes
4answers
337 views

Are “using” statements “bad code”? [closed]

I have read that a using like this: using (myObject) { myObject.DoStuff(); } Can be thought of like this: try { myObject.DoStuff(); } finally { myobject.Dispose() } So if ...
9
votes
5answers
460 views

When to Dispose?

I'm getting confused about all this talk about IDispose and "using" Statements. I wonder if someone can tell me if I need to use either a "using" Statement or some sort of implementation of IDispose ...
0
votes
2answers
47 views

Can we use `Using` block in WF 4?

I'm very new to Workflow and a dummy in VB, so, I'm sorry for my weak question if it is. I'm trying to implement a using block like this: using (var db = new Dal.DataContextProxy()) { //My Codes ...
8
votes
4answers
533 views

using & try/catch nesting

This question is more of a what is the RIGHT way to do something... The question...is there a proper nesting order between a using block and a try/catch? Is it ok to nest the entire using statement ...
0
votes
4answers
83 views

Accessing objects from within the scope of a using block through the object being used

I'd like to know if it is possible to do the following: using (MyClass o = new MyClass()) { TheClassIWantMyClassToSee x = new TheClassIWantMyClassToSee(); ...
1
vote
5answers
351 views

Why does using throw an exception when it's supposed to behave like try/catch/finally?

As far as I understand, using works like a try/catch/finally, so I would expect that if an exception occurs in a using statement it would get caught (which is kinda odd, because that would also mean ...
7
votes
3answers
160 views

using(IDisposable obj = new …) in C# to write code blocks in stream (e.g. XML)

I have started to use classes implementing IDisposable to write blocks in streams, with the using statement. This is helpful to keep a correct nesting and avoid missing or wrongly placed start/end ...
3
votes
10answers
467 views

Are there situations where using will not dispose of an object?

Are there any situations where using will not dispose of the object it is supposed to dispose of? For example, using(dbContext db = new dbContext()){ ... } is there any way that after the last } ...
18
votes
2answers
2k views

using statement with multiple variables

Is it possible to make this code a little more compact by somehow declaring the 2 variable inside the same using block? using (var sr = new StringReader(content)) { using (var xtr = new ...
1
vote
2answers
173 views

Is Close on database connection calling here?

I got this code: try { using (OracleConnection c = new OracleConnection(globalDict[byAlias(connAlias)].connString)) { c.Open(); using (OracleCommand recordExistentQuery = new ...
0
votes
4answers
4k views

Save uploaded file asp.net C# - using

I've uploaded a file with the FileUpload control. I've got the path and everything and I would like to save the image to the server. I don't want to use the SaveAs() method. I wonder, is there a way ...
5
votes
4answers
140 views

Do I need to use “using” keyword in every object which implements IDisposable?

I am calling a 3rd party library, where so many class implemented IDisposable. Do I need to use using pattern on all of them?
0
votes
4answers
4k views

'System.Data.DataRowView' in DropDownList

I cannot bind data to a Dropdown List.. Can any one explain me why? Error is : 'System.Data.DataRowView' does not contain a property with the name '_DeptID'. my code is: public class ...

1 2 3 4 5