コード例 #1
0
 public void Enqueue(T item)
 {
     UnderlyingList.Add(item);
 }
コード例 #2
0
 public void Push(T item)
 {
     UnderlyingList.Add(item);
 }