Using an array of arrays for the passwords

Hey all,

Just wanted to ask if any of you guys have tried creating some array of arrays for the passwords? I’ve tried looking at documentation and it seems a bit complicated.

This website suggested I do something like this:

string[,] Passwords = { { "lamps", "books", "chair", "plant", "floor" }, { "salaries", "payslips", "account", "currency", "incoming" }, { "unidentified", "microwaves", "telescopes", "compromised", "destruction" } };

Which I did, but I couldn’t figure out how to get the length of one of the internal arrays. Any of you know how to do this?

Privacy & Terms