I am a bit lost. i have a csv file like the following
USN Name DOB Sem Percentage
111 abc 07/03 3 88
112 cde 18/07 4 77
123 ghi 15/11 4 80
I want to create a dictionary kind of structure (multilevel dictionary-
Dictionary <string, Dictionary<string, string>>
)
using C++. Here i want to store the 1st line as key i.e USN, Name, DOB ... as keys of the hash and the values in that columns as values of the hash.
Is it possible?
Any help will be greatly appreciated .. Thanks in advance.