RobEmDee
Well-known member
I have a DataTable in my DataSet in which there is a column that serves as temporary storage for data. In order to put any kind of DataType in there (for ease of managability), I have made the columns DataType System.Object. Everything works great.....I can stick anything thing in there and retrieve it back into a its specific data type without explicitly Casting. I assume that this is because all Data Types are derived from System.Object. I am concerned because generally in my development experience when something is this easy, you are paying the price somewhere. Could someone more experienced than I point out inefficiencies or a better way to do this? Thanks!