public E Pop()
 {
     return(list.RemoveFirst());
 }
 public E Dequeue()
 {
     return(list.RemoveFirst());
 }