Possible Duplicate:
What is the C# Using block and why should I use it?
I have seen the using statement used in the middle of a codeblock what is the reason for this?
I have seen the using statement used in the middle of a codeblock what is the reason for this? | |||||||||||||||||||
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
The using syntax can(should) be used as a way of defining a scope for anything that implements IDisposable. The using statement ensures that Dispose is called if an exception occurs.
Alternatively you could just use:
C#, through the .NET Framework common language runtime (CLR), automatically releases the memory used to store objects that are no longer required. The release of memory is non-deterministic; memory is released whenever the CLR decides to perform garbage collection. However, it is usually best to release limited resources such as file handles and network connections as quickly as possible. The using statement allows the programmer to specify when objects that use resources should release them. The object provided to the using statement must implement the IDisposable interface. This interface provides the Dispose method, which should release the object's resources. | |||||
feedback
|
|
It is often used when opening a connection to a stream or a database. It behaves like a try { ... } finally { ... } block. After the using block, the IDisposable object that was instantiated in the parenthesis will be closed properly.
With this example, the stream is closed properly after the block. | |||
|
feedback
|
|
using is try finally syntaxical suger for anything that has an IDisposable.. like a sqlconnection. Its use it make sure something is disposed after its out of the
| |||
|
feedback
|
|
The using statement ensures an object is properly disposed once it is nolonger required. It basically saves you writing obj.Dispose(); and gives a visual guide as to the scope and usage of an variable. See the MSDN page for more info | |||
|
feedback
|
|
This form of using has to do with freeing resources. It can only be used in combination with class that implement the IDisposable interface. example:
at the end of the using block conn.Dispose is called, even if an exception was thrown inside the block. In the case of a SwqlConnection object means that the connection is always closed. A drawback of this construction is that there is now way of knowing what happend. Hope this helps answer your question? | |||
|
feedback
|
|
Whenever your code creates an object that implements IDisposable, your code should do the creation inside a using block, as seen above. There is one exception to this rule. An error in the design of WCF proxy classes prevents using statements from being useful for proxy classes. Briefly, the Dispose method on a proxy class may throw an exception. The WCF team saw no reason not to permit this. Unfortunately, not seeing a reason doesn't mean that there is no reason:
If the implicit Dispose call throws an exception, then the catch block will catch that exception instead of the one thrown within the using block. | |||
|
feedback
|