public void Add(T item) { ThrowDuplicateException(item); if (Count == 0) { root = new Node <T>(item, Size); } else { root.Add(item); } Count++; }