Me.Close()
Close()
This.Close()
Close.this()
Answer is Right!
Answer is Wrong!
The correct answer is: A. Me.Close()
The Me
keyword refers to the current form. The Close()
method closes the form.
The other options are incorrect because:
Close()
does not close the current form. It closes the form that is passed as a parameter.This.Close()
is equivalent toMe.Close()
.Close.this()
is not a valid statement in C#.