I would like to build an in-memory table data structure with 4 columns so I can look up values based on any combination of the columns (using linq for example).
Is there a built-in data type for this or do I have to craft one myself (obviously I can’t)?
I would like to build an in-memory table data structure with 4 columns so
Share
Unless you have something specific in mind, I would declare a type with 4 properties with suitable names and types, i.e.
and use any list/array/dictionary etc as necessary, or just
etc.