We assume that the values given within the table are samples and real data will be different
Otherwise we would handle an access by
dtData.Rows(number - 1)(ColNameOrIndex)
Following the question:
we could model it like (one of many options):
New Dictionary(Of String, Object) From {
{"1", new object(){"SWE","DFR1","TYU1","OPI1"}}
{"2",.....
.....
}
The Dictionary as an illustration, how the result would look like
But each access of the A,B,C,D,E values would require a casting like: DirectCast(myDict("1"), Object())(2) → getting the C Value
So we would recommend to elaborate more at the motivation, why convert it into a dictionary and how the usage / access is needed. Maybe we can suggest a more fitting alternate, when we do know more about the use case and what is aimed.