From what I've read, it doesn't look possible to use string indices in arrays. However, the topic seems to summarize what I am trying to do.
I have a table showing student and course information in Excel, and from that table I need to create something like
x(StudentID, CourseID) (equals 1 if student is taking the course, 0 otherwise)
I've been Googling for two days now but I'm lost. I've come across with collections and dictionaries but I don't know which one is more suitable or if they are suitable at all. What would you recommend?
Thanks in advance.