VERICAR SE CAMPO E VAZIO

WILTONVB 09/05/2012 11:41:22
#401630
em vb 6 eu faço assim:

if txtnome.text = [Ô][Ô] then
msgbox [Ô]prencha o campo nome[Ô]
exit sub
end if

if txtTelefone.text = [Ô][Ô] then
msgbox [Ô]prencha o campo Telefone[Ô]
exit sub
end if

if txtEmail.text = [Ô][Ô] then
msgbox [Ô]prencha o campo Email[Ô]
exit sub
end if

como fica em c# ?
KERPLUNK 09/05/2012 11:46:35
#401632
Resposta escolhida
if (txtnome.Text == string.Empty)
{
MessageBox.Show([Ô]preencha o campo nome[Ô]);
return;
}
Tópico encerrado , respostas não são mais permitidas