Using Statement usage in C#

Answers were Sorted based on User's Feedback



Using Statement usage in C#..

Answer / nipun

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.
e.g.
using (Font font1 = new Font("Arial", 10.0f))
{
}

Is This Answer Correct ?    2 Yes 0 No

Using Statement usage in C#..

Answer / om shivaya namaha

Using statement is used to import the namespaces in to the
page by reading the namespace classname it will search the
class in DotNet Farame work class library and that
perticaular class is imported in to the page

Is This Answer Correct ?    2 Yes 3 No

Post New Answer

More ASP.NET Interview Questions

What is the result when the Web Form containing the following line is complied and executed? <asp:Button id=?thebutton? onClick=?theEvent? /> a) The button control is created; theEvent is the click event handler. b) Compiler error; the control must be set to runat=?server?. c) Compiler error; onClick is not a valid attribute. d) Runtime Exception; the control must be set to runat=?server?.

3 Answers   Syntax Softtech,


can u debug application programatically? if yes how?

0 Answers   FactorH,


If Instancing = Single use for ActiveX Exe, how will this be executed if there are 2 consecutive client requests ?

0 Answers   DELL,


explain ado.net

6 Answers  


Explain the difference between server control and html control.

0 Answers  


Explain Factory pattern?

2 Answers   Microsoft,


What is the difference between system.stringbuilder and system.string

0 Answers  


What are the disadvantages of view state / what are the benefits?

2 Answers   Siebel Systems,


Why SessionID changes in every request in asp.net?

0 Answers   HCL,


Explain what is an assembly?

0 Answers  


Which method do you invoke on the DataAdapter control to load your generated dataset with data?

2 Answers  


Why do we need url encoding?

0 Answers  


Categories