[Solved] Concatenation chars VS split method [closed]
If you need all the elements that are between the delimiters, then Split() is the way to go. If you only need, say, the second element, and you don’t want to allocate memory for the first and third elements, you can use IndexOf to find the delimiters then extract the string using SubString. More tips … Read more