I have an array of type object which are strings.
I would like to convert them to strings
what would be the quickest way of doing so.
Eg.
I have this "object[]" and want to convert it so it is this "string[]"
UPDATE -
i think the problem is that some of the objects on the object[] are actually other objects like integers. I would need to convert them to strings first. Please include that into your solution.
thanks