VB.net - Execute code after reurn statement?

  • Thread starter Thread starter marktm
  • Start date Start date
M

marktm

Would "someSubProcedure" execute in the following example?
Or is the rest of the function ignored once the Return statement is
hit?

Thanks


Fucntion doSomething() As String
Dim strTemp As Sting = "A"
Return strTemp
someSubProcedure()
End Function
 
Back
Top