Assuming Lista<>
is Lista<Pessoas> ListaDePessoas()
, and you have all people according to return of your Procedure. Following this line of reasoning your Table has the Field (ID, Name, Birth, etc.), Logically, each Person object in your List has a property referring to each Column.
I'm assuming you want to gather all the records in the column that represents each person's Name.
using System.Collections.Generic;
// - > responsible for supplying type List<>
Believing that your list is filled with all the desired Tuples:
you can store the desired column in another list, an array or direct into a component.
I will use a List<>
to store this desired column.
List<string> ListaNomes = new List<string>();
ListaDePessoas.ForEach(delgate (Pessoas pessoa))
ListaNomes.add(pessoa.Nome);
);
I hope I have helped, even with little information.