|
Related Questions |
View Answer |
|
Explain about Visual basic.NET culture?
|
View Answer
|
|
Compare C# and Visual basic.NET?
|
View Answer
|
|
Explain about the performance of Visual basic?
|
View Answer
|
|
What are the various open source tool available for VB.NET?
|
View Answer
|
|
Describe about Visual basic.NET?
|
View Answer
|
|
Explain and brief about rapid application development tool?
|
View Answer
|
|
Name some of the features present in VB 2005?
|
View Answer
|
|
Explain about .NET?
|
View Answer
|
|
Explain about visual basic?
|
View Answer
|
|
Explain Virtual Destructors
|
View Answer
|
|
Explain the flow for a simple win32 based application ?
|
View Answer
|
|
How do I convert one DataType to other using the CType Function?
|
View Answer
|
|
What is Try- Catch –Finally Exception Handling?
|
View Answer
|
|
How can I run a .EXE from a VB.NET application?
|
View Answer
|
|
How do I get the screen resolution of my working area?
|
View Answer
|
|
How do I find the path from where the application is running?
|
View Answer
|
|
What is an Assembly?
|
View Answer
|
|
What is managed code and managed data?
|
View Answer
|
|
How do I get Version Information From The AssemblyInfo File?
|
View Answer
|
|
Destructors are used to de-allocate resources i.e. to clean up after an object is no longer available.
Finalize is the destructor which is normally used. Finalize is called automatically when the .NET runtime determines that the object is no longer being used. Using the Finalize method in code looks like this:
Public Class Form1 Inherits System.Windows.Forms.Form Dim obj1 as new Class1 () End Class Public Class Dest Protected overrides Sub Finalize() ‘ calling the Finalize method End Sub End Class
|
View Answer
|