Why not have a List of Tuple ? It may not be clear, but it will do what you need:
var list = new List<Tuple<string, string, string>>(); list.Add(new Tuple<string, string, string>("12", "something", "something"));
Although, it would probably be better to give meaning to these meanings. Perhaps if you tell us what the values ββintend to show, then we can give some ideas on how to make it more readable.
Arran source share