Answer Posted / 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 |
Post New Answer View All Answers
What are session state modes?
What is postback pixel?
What is the concepts of globalization and localization in .net?
What is preprocessor in .net and type, where it use?
Explain the boxing and unboxing concept in .net?
How to sign out from forms authentication?
how to write html code with ssl
What are the session management techniques asp net?
Describe the Server Control Events of ASP.NET?
Can you explain how ASP.NET application life cycle and page life cycle events fire?
What is the purpose of App_Code folder in ASP.NET? Why we this?
Explain the overview of asp.net?
Is asp.net is a programming language?
What are the difference between overriding and overloading?
Define application state variable and session state variable?