generic data types
Hello,
Does anyone know how to create a generic container of primitive data types? I'm reading in data from a binary file; its got a header that tells me the data type of the binary data. I realized that I cannot use avoid[] data as a generic data type; so I tried creating an empty array of each primitive data type, and found that it led to highly inefficient code. If someone can help me out with this problem, I'd be really grateful.
Thanks,
TJDeep

