示例#1
0
 public bool ExisteElemento(CVertice pElemento)
 {
     if ((aElemento != null) && (pElemento != null))
     {
         return(aElemento.Equals(pElemento) || (aSublista.ExisteElemento(pElemento)));
     }
     else
     {
         return(false);
     }
 }