Let's say , I have tableOne as this structure
Name Age
=========================
John 34
Ammy 23
Joe 16
Sam 18
What I want to get is likes this format in a single string
John (34) , Ammy (23) , Joe (16) , Sam (18)
How can I get this in a short way using lambda expression ? Thanks :)
tableOne.ToList()