VB Dot Net Developer Question:
Download Job Interview Questions and Answers PDF
Explain the use of New Keyword?
Answer:
New keyword is used with the constructor in which it can be used as a modifier or an operator. When it is used as a modifier, it hides inherited member from the base class member. When it is used as an operator, it creates an object to invoke constructors.
Dim frm As New Form1 frm.show()
Dim frm As New Form1 frm.show()
Download VB .Net Developer Interview Questions And Answers
PDF
Previous Question | Next Question |
Explain about Garbage Collection? | Explain Manifest? |