How to define and use functions in VB.NET

2 Answers

0 votes
Module Module1

    Sub Main()

        Console.WriteLine(sum(3, 7))

    End Sub

    Function sum(a As Integer, b As Integer) As Integer

        Dim c As Integer

        c = a + b

        Return c

    End Function

End Module

'run:
' 
'10

 



answered Feb 21, 2016 by avibootz
0 votes
Module Module1

    Sub Main()

        Console.WriteLine(sum())

    End Sub

    Function sum() As Integer

        Dim a As Integer = 7, b As Integer = 3

        Return a + b

    End Function

End Module

'run:
' 
'10

 



answered Feb 21, 2016 by avibootz
...