I have an array list that looks like this:
@{name=phill; age=20; school=washington high;} @{name=katie; age=30; occupation=HR assistant; country=USA;}
How do I convert this into a hash table so it looks like:
name | age | school | occupation | school |
---|---|---|---|---|
phill | 15 | washington high | ||
katie | 30 | HR assitant | USA |
Thanks
Southy
submitted by /u/Southwar
[link] [comments]
The post Converting an arraylist into hashtable appeared first on How to Code .NET.