Listing 4

public ref class Queue : ICollection
{
public:
    void Put(Object^ o)
    {
        // ...
    }
    Object^ Get()
    {
        // ...
    }
    // ...
};