Salut!

SVP quelqu'un peut m'aider si ce code est bien écrit?

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
 
private void validateUserEntry3()
	{
 
		// Checks the value of the text.
 
		if(serverName.Text.Length == 0)
		{
 
			// Initializes the variables to pass to the MessageBox.Show method.
 
			string message = "You did not enter a server name. Cancel this operation?";
			string caption = "No Server Name Specified";
			MessageBoxButtons buttons = MessageBoxButtons.YesNo;
			DialogResult result;
 
			// Displays the MessageBox.
 
			result = MessageBox.Show(this, message, caption, buttons,
			MessageBoxIcon.Question, MessageBoxDefaultButton.Button1);
 
			if(result == DialogResult.Yes)
			{
 
				// Closes the parent form.
 
				this.Close();
 
			}
 
		}
 
	}
depuis http://msdn.microsoft.com/en-us/library/ctd56yay.aspx

Merci