I have a linear array of structs. These are constant structs and is a way of holding a simple table.
Now though I need to add another "column" to the table (another member in the definition of the struct) and I'm wondering if I'd be better using a class rather than a struct.
Since both structs and classes have constructors I'm wondering which is best to store fixed arrays of data?