using System.Collections;
using System.Collections.Generic;
public class FixedStack<T>
public FixedStack(int length)
if(count == items.Length)
throw new InvalidOperationException("");
throw new InvalidOperationException("");
T item = items[--count]; }
throw new InvalidOperationException("");