Example #1
0
        public string Newest()
        {
            bool isReset = LoadHistory();

            if (!_history.Any())
            {
                return(null);
            }

            _index = _history.Count - 1;

            return(_history[_index]);
        }