ANDALSO - PARA QUE SERVE?

TUNUSAT 10/10/2006 08:36:45
#176734
Por favor, pessoALL,

Estou vndo uns exemplos o "AndAlso" no Help do VB.NET, mas estou achando que é a mesma coisa do "And" ...

Veja o exemplo Microsofitiano modificado ...

'=================================
Dim a As Integer = 10
Dim b As Integer = 8
Dim c As Integer = 6
Dim firstCheck, secondCheck, thirdCheck, quartoCheck As Boolean
'***** Usando o "AndAlso"
firstCheck = a > b AndAlso b > c
secondCheck = b > a AndAlso b > c
thirdCheck = a > b AndAlso c > b
quartoCheck = b > a AndAlso c > b
'***** Usando o "And"
firstCheck = a > b And b > c
secondCheck = b > a And b > c
thirdCheck = a > b And c > b
quartoCheck = b > a And c > b
'***** Usando o "Or"
firstCheck = a > b Or b > c
secondCheck = b > a Or b > c
thirdCheck = a > b Or c > b
quartoCheck = b > a Or c > b
'=================================

Para que serve esta expressão?

[]'s,
Tunusat.
Tópico encerrado , respostas não são mais permitidas