'Visual Basic 2010 Method Overloading Procedures en Functies Module ExerciseSolution Function GetCombination(ByVal value1 As String, _ ByVal value2 As String) As String GetCombination = value1 & value2 End Function Function GetCombination(ByVal value1 As Integer, _ ByVal value2 As Integer) As Integer GetCombination = value1 + value2 End Function Function GetCombination(ByVal value1 As Boolean, _ ByVal value2 As Boolean) As Boolean GetCombination = value1 AndAlso value2 End Function End Module 'Bezoek www.vbvoorbeelden.be voor meer Visual Basic voorbeelden. 'Copyright - De Wolf / vbvoorbeelden - 2003-2011 - Alle rechten voorbehouden.