I'm triyng to do a quick Haskell-like aggregation in Linq (C#), to turn a List into a string in the format "i^j^k..." etc.
is this possible in one query, or should I just do it the old-fasioned
foreach (int i in list)
{
string+= i + "^"
}
(p.s. yes, that's pseudocode and wouldn't compile.)