Unknown size Numeric Arrays from Strings - dontumindit





5.00/5 (1 vote)
You can use Linq to do the same thing double[] mydouble = str.Split('#').Select(x => double.Parse(x)).ToArray();
You can use Linq to do the same thing
double[] mydouble = str.Split('#').Select(x => double.Parse(x)).ToArray();