Hi All,
I would like to know the pros and cons of calling procedures with Call Keyword and without Call in VB.NET?
Private Sub ProOne()
// Code Are Here
End Sub
Private Sub Calling()
ProOne() // I would like to know pros and cons of this
Call ProOne() // And I would like to know pros and cons of this
End Sub
Thanks in advance all.