Using Statement usage in C#
Answers were Sorted based on User's Feedback
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 |
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 |
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?.
can u debug application programatically? if yes how?
If Instancing = Single use for ActiveX Exe, how will this be executed if there are 2 consecutive client requests ?
explain ado.net
Explain the difference between server control and html control.
Explain Factory pattern?
What is the difference between system.stringbuilder and system.string
What are the disadvantages of view state / what are the benefits?
Why SessionID changes in every request in asp.net?
Explain what is an assembly?
Which method do you invoke on the DataAdapter control to load your generated dataset with data?
Why do we need url encoding?