Weekend ;)

bool ret = false;

IList<Woman> women = (from p in omar.KnownPersons
                         where p.Gender == 'f' &&
                         p.BeautifulPoints >=65
                      select p
                      ).ToList();

foreach(Woman w in women)
{
    if(w.SheWillGiveItTo(omar))
      {
          ret = true;
          break;
      }
    else
      {
          w.StandBy();
      }

   if(ret)
      omar.LetsRock();
   else
      omar.ContinueYourWorthlessLife();
}
 

Non ho compilato ma dovrebbe andare…

Print | posted @ venerdì 19 febbraio 2010 20:19

Comments on this entry:

Gravatar # re: Weekend ;)
by Roberto at 19/02/2010 20:50

secondo me l'errore sta:

1- nella repository :P
omar.KnownPersons

2- nella exit strategy
omar.ContinueYourWorthlessLife();

se per codice deontologico personale :P
non si vuole allargare il filtro
SheWillGiveItTo alle persone ancora omar.NotWellKnownPersons

l'unica è agire sulla exit strategy, aggiungendo una qualche funzione utile
a migliorare le performance in inserimento
nella lista omar.KnownPersons


ahhaha :)
Gravatar # re: Weekend ;)
by Alessio Marziali at 19/02/2010 23:37

Sei un fenomeno
Comments have been closed on this topic.