//---------------------------------------------------------------------------------------------------------------------------------------------------------
 //CONSTRUCTOR DE LA CLASE
 public ListaNodo()
 {
     this._inicio = null;
     this._ultimo = null;
     this._count  = 0;
 }