In VB.Net Compact Framework 3.5 is it possible to get a list of the Parameters that are passed to a method?
For example,
Private Sub TestSub(Param1 as String, Param2 as Integer, Param3 as List(Of String)
'Get List of Parameters
End Sub
Is it possible to get the names of the parameters and what they are populated with at the point it says 'Get List of Parameters
Any help would be much appreciated.
Thanks