I have a string like this, which is dynamic and can be any length from 1 to 1000 parts in the format of id^part~:
string Parts = "1^PartOne~2^PartTwo~3^Part3~4^PartFour"
Is it possible to convert this into an iList of strings like the following using LINQ?
PartOne
PartTwo
PartThree
PartFour
or do I just need to split twice and add to a list manually?
