I have the following classes:
Thecodelookslikethis:
publicclassMae{publicstringNome{get;set;}publicList<Filho>Filhos{get;set;}}publicclassFilho{publicstringNome{get;set;}}
Inthiscase,itispossibletogetallthesonsofthemother,butitisnotpossibletoobtainthemotherofthechildren.
Ex:
varmae=newMae();mae.Nome="Maria";
mae.Filho = new List<Filho>();
var filho = new Filho();
filho.Nome = "Joãozinho"
mae.Filho.Add(filho);
filho.Mae // O objetivo é acessar a mãe...
How would it be possible to do this?