Bless.Util.Deque.AddFront C# (CSharp) Метод

AddFront() публичный Метод

Add an object to the front of the queue
public AddFront ( o ) : void
Результат void
	public void AddFront(T o)
	{
		list.InsertBefore(list.First, o);
	}