Hi
I have an object array:
object[] a = new object[100];
the array handles int, double, strings and other types which implements IComparable. And I allways check that the objects I put in the array are of the same type, so its either all ints or string etc..
Now, what I want to do is to...