I have an object array and I want to convert it to a specific type array. I have the type to convert it into which I get at run time. But I am having a problem doing the actual conversion.
If I use the Convert.ChangeType, I get the error that Object must implement IConvertible
The Array.ConvertAll is template based and requires that I pass the destination type as a template which I only know at run time. I even tried to do use reflection to call this method but I cannot pass the lambda expression as an argument to the MethodInfo.Invoke method.
Any Ideas?
Right I have the following which is not working:
Type convertTo = GetFinalType();
Object[] objArr = GetObjectArray();
var arr = Array.ConvertAll(objArr,elem=> Convert.ChangeType(elem,convertTo));
You are close; does the following work, or was objType a typo?
Have you tried this?
That's untested, but it should work. It's more compact and doesn't (really) use reflection.
This is a solution that worked for me:
I did it the worst way possible but I managed it somehow. I created a new class
And where I needed the conversion, I used:
Where
The code is failing because some object in your array is not a primitive type, or is not something that implements the
IConvertible
interface You cannot useConvert.ChangeType()
on such objects.