示例#1
0
 //删除
 public E Pop()
 {
     return(list.RemoveFirst());
 }
示例#2
0
 public E Dequeue()
 {
     return(list.RemoveFirst());
 }