public static void delete(DropboxApi api, DropboxClient client) { string name = ""; Console.WriteLine("Введите название удаляемого объекта "); name = Console.ReadLine(); var del = client.delete(api, name); Console.WriteLine("\t\tУдалено"); Console.WriteLine("{0,20}{1,30}", "Путь ", del.Root + del.Path); Console.WriteLine("{0,20}{1,30}", "Удалено ", del.Modified); }