Example #1
0
        static void Main(string[] args)
        {
            int num;

            //ask user for the password amount
            Write("Give amount of passwords you want: ");
            bool input = int.TryParse(ReadLine(), out num);

            if (input)
            {
                //calling print method from object
                PassGen.PasswordPrint(num);
            }
            else
            {
                throw new ArgumentException("Wrong type of input input.");//if input isnĀ“t suitable respond is given
            }

            ReadKey();
        }
Example #2
0
 private void btnCreatePass_Click(object sender, EventArgs e)
 {
     PassGen newPassGen = new PassGen();
     newPassGen.Show();
     this.Hide();
 }