I have an object that contains an array, but the type of the array will be diffent every time.
I could do something like
class MyObject<T>
{
public T [] data;
}
The thing is that this does not work with primitive types (int, double, ...) and it makes me work with Objects (Integer, Double...).
Is there any way of avoiding this?
Thanks in adavnce