using System; namespace OpenVIII.Fields { public interface IStack { int Count { get; } void Push(T item); T Pop(); } }