I can add rows of data to a datatable.
DataTable dt = new DataTable();
dt.Clear();
dt.Columns.Add("Id");
dt.Columns.Add("Title");
dt.Columns.Add("Description");
DataRow r = dt.NewRow();
r["Id"] = 1;
r["Title"] = "Article Title";
r["Description"] = "Article Description";
dt.Rows.Add(r);
Then output the necessary cell value.
MessageBox.Show(dt.Rows[0]["Title"].ToString());
So it's a kind of array ( that contains rows ) of arrays ( each one having 3 textual keys and 3 textual values ).
Question:
How can I use Collection variables to achieve this without a datatable?
Or maybe you could suggest any other type of data which is more appropriate.