Is there a way I can iterate through the parameter that are sent to a function?
i.e.
private function somthing(ByVal This As String, ByVal That As String, ByVal Something As String)
End Function
Is there a way to access the values in This, That, and Something without using their name? say in a for loop?
Also, How do you do optional paramers in Visual Basic.Net