1Class MethodExpression1 2 Shared Function Test() As Integer 3 Return 0 4 End Function 5 Shared Function Main() As Integer 6 Dim value As Integer 7 value = Test 'Without parenthesis. 8 Return value 9 End Function 10End Class