A Sub Procedure is a method will not return a value A sub procedure will be defined with a Sub keyword
Sub ShowName(ByVal myName As String)Console.WriteLine (My name is: & myName)End Sub
A function is a method that will return value(s). A function will be defined with a Function keywordFunction FindSum(ByVal num1 As Integer, ByVal num2 As Integer) As IntegerDim sum As Integer = num1 + num2Return sumEnd Function
No comments:
Post a Comment