M
Mark Kamoski
Hi Everyone--
Please help.
What (really) is the difference between these 3 code snippets?.
'1
Dim objData1 As New DataSet()
'2
Dim objdata2 As DataSet = New DataSet()
'3
Dim objdata3 As DataSet
objdata3 = New DataSet()
Which is fastest?
Is there ANY difference between them?
Which do you prefer?
Which do you suggest?
What are the factors involved?
Please advise.
Thank you very much.
--Mark
Please help.
What (really) is the difference between these 3 code snippets?.
'1
Dim objData1 As New DataSet()
'2
Dim objdata2 As DataSet = New DataSet()
'3
Dim objdata3 As DataSet
objdata3 = New DataSet()
Which is fastest?
Is there ANY difference between them?
Which do you prefer?
Which do you suggest?
What are the factors involved?
Please advise.
Thank you very much.
--Mark