How can you change a ";" seperated string to some kind of dictionary?
- by Sem Dendoncker
Hi,
I have a string like this:
"user=u123;name=Test;lastname=User"
I want to get a dictionary for this string like this:
user "u123"
name "Test"
lastname "User"
this way I can easely access the data within the string.
I want to do this in C#.
Cheers,
M.