Be Massive Help!


Could someone explain to me each line of the following code of what the code does as well as the overall functionality created:


string attempt;
attempt = My_Dialogs.InputBox("Enter your password"); while (attempt != "basic")
{
MessageBox.Show("Wrong! - try again.");
attempt = InputBox("Enter your password"); }
MessageBox.Show("Welcome to the program!");


Thanks