Q. What is wrong with the below statement?
Code:
Msg.Text="This is an example"&ControlChars.NewLine&"Example".
β
Correct Answer: (C)
There should be spaces before and after each &
Msg.Text="This is an example"&ControlChars.NewLine&"Example".
You must be Logged in to update hint/solution