String Parsing in C#
- by Betamoo
What is the most efficient way to parse a C# string in the form of
"(params (abc 1.3)(sdc 2.0)....)"
into a struct in the form
struct Params
{
double abc,sdc....;
}
Thanks
EDIT
The structure always have the same parameters (number and names).. but the order is not granted..