Пример #1
0
        private static void LoginWithNewCredentials(object sender)
        {
            console.OutputForegroundColor = ConsoleColor.Cyan;
            console.WriteLine("Please enter new credentials.");
            console.OutputForegroundColor = ConsoleColor.Gray;
            console.Write("Username: "******"Password: ");
            _settings.Password = Console.ReadLine();

            BattleNetClient client = sender as BattleNetClient;

            client.ContinueLogin();
        }