Witajcie! Mam liste struktur:
struct sElement{
public sElement(string newName, int newAge, string newInfo)
{
sName = newName;
sAge = newAge;
sInfo = newInfo;
}
public string sName;
public int sAge;
public string sInfo;
}
class cLista
{
private static List<sElement> myList = new List<sElement>();
mam metodę:
public sElement Search(string newName, string newAge)
Chcę na podstawie 2 stringów odszukać wszystkie struktury zawierające stringi równe podanym jako argumenty. Normalnie w C++ uzyłbym find_if(), jednak tu się zagubiłem. Poradzicie coś?