consider this:
string test = "";
somestring.ToList().Take(50).Select(
delegate(char x)
{
test += x;
return x;
}
);
now why test is empty after that ? i dont care about the return of that actually i know its IEnumerable.
any way if this is all seems a mess then how can i convert IEnumerable<char>
to string ?
thanks in advance..