codigo eficiente
Publicado por Alfredo (15 intervenciones) el 26/01/2010 20:20:26
Cuál de estas dos formas de programar es más eficiente:
If dataset.Tables(0).Rows.Count > 0 Then
--
--
End if
o
Dim totalregs as integer
totalregs = dataset.Tables(0).Rows.Count
if totalregs > 0 then
--
--
end if
If dataset.Tables(0).Rows.Count > 0 Then
--
--
End if
o
Dim totalregs as integer
totalregs = dataset.Tables(0).Rows.Count
if totalregs > 0 then
--
--
end if
Valora esta pregunta
0