a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
21 lines
208 B
C#
21 lines
208 B
C#
using System;
|
|
|
|
public class Queue<T>
|
|
{
|
|
protected class Enumerator
|
|
{
|
|
Queue<T> queue;
|
|
|
|
public Enumerator (Queue<T> queue)
|
|
{
|
|
this.queue = queue;
|
|
}
|
|
}
|
|
}
|
|
|
|
class X
|
|
{
|
|
public static void Main ()
|
|
{ }
|
|
}
|