static void DeleteRepository() { ListRepositories(); Console.Write("Write the name of the repository to delete: "); string repository = Console.ReadLine(); ApiUtils.DeleteRepository(repository).Wait(); Console.Write(string.Format("Repository {0} successfully deleted!", repository)); }