Example #1
0
        private void EditFavoriteImpl(FavoritePath favorite)
        {
            var type      = favorite.Type;
            var typeTitle = type.ToString().TrimEnd('s');
            var prompt    = new MyPrompt($"Enter new name for {typeTitle} Favorite '{favorite.Path}':", $"Edit Favorite {typeTitle}", favorite.Name);

            if (!prompt)
            {
                return;
            }
            favorite.Name = prompt;
        }