Hello.
I'm developing a Windows Phone application with C#.
I have an ObservableCollection defined as follows:
public class StartingPersons
{
public string ImagePath { get; set; }
public string Name { get; set; }
public static ObservableCollection<StartingPersons> GetPersons()
{
...
}
}
I want to search inside the ObservableCollection returned by StartingPerons.GetPersons(); by the field NAME.
How can I do that?
Thanks.