C#: Password Generator
Create a C# program that creates a strong password from the lyrics for a song, or some other sentence that is easy to remember.
The user can enter the sentence or line from a song in a text box or input box.
Replace several words with symbols: Here are a few possibilities
- money $
- and &
- the +
- equal =
- up ^
- star *
- not ~
- never ~
Create a new string using just the first letter of each word plus any punctuation.
Alternate upper and lower case letters.
Check how strong the password is using the following criteria:
- Has at least 10 characters.
- Contains lower-case letter.
- Contains upper-case letter.
- Contains digit.
- Contains symbol
Display the password sand the strength.