Converting a string into ArrayCollection (C#, see string below)

Posted by Ole Jak on Stack Overflow See other posts from Stack Overflow or by Ole Jak
Published on 2010-04-25T21:10:55Z Indexed on 2010/04/25 21:13 UTC
Read the original article Hit count: 261

Filed under:
|
|
|
|

how to get from such string ' name1{value1,value2};name2{value3}; ... nameN{value12, valueN} '

Array or arrays in such form: Array = {string, int};{string, int};{string, int};

like this:

{
 { name1 ; value1}
 { name1 ; value2}
 { name2 ; value3}
...
 { nameN ; valueN}
}

in C# (.net)?

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET