I have a class that has about 20-some methods in it. Each one does some web service message processing. I just had to make a change to it, and realized that every one of these m
If the parameters are same or close to the same you can always pass in a delegate. If they are not your could call the code by reflection and take a parameter of 'object[]' to pass to invoke.