I have a list of strings, that each string needs to split by a regex, than kept in the same list.
List<string> a = new List<string>();
a.Add("big string with a lot of words");
a=a.SelectMany(item=> Regex.Split("\r\n",item)).ToList();
I just want to make sure that this will not reorder the parts of the string that were created?
Is there a web site that has information about methods runtime and compiler optimizations?
Thanks