I have a method with an out parameter that tries to do a type conversion. Basically:
public void GetParameterValue(out object destination) { object param
The type of your destination variable is always System.Object. You could just return
System.Object
Convert.ChangeType(paramVal, System.Object).