[amp_mcq option1=”Me.Close()” option2=”Close()” option3=”This.Close()” option4=”Close.this()” correct=”option1″]
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#.