public MyStack(MyStack <T> currentStack, int count, T item) { _count = count; _item = item; _currentList = currentStack; }
public MyStack() { _count = 0; _item = default(T); _currentList = null; }