Skip to content

Commit

Permalink
Build v23.12.020
Browse files Browse the repository at this point in the history
  • Loading branch information
Yu Haijun committed Nov 15, 2023
1 parent 3918d52 commit 32aa8f4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions RandomKey/RandomKey.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@ public partial class FormMain : Form
private const string KEY_SET_HALT_UPPERCASE_LETTERS = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
private const string KEY_SET_HALT_LOWERCASE_LETTERS = "abcdefghijklmnopqrstuvwxyz";
private const string KEY_SET_HALT_NUMBERS = "1234567890";
private const string KEY_SET_HALT_SPECIAL_CHARACTERS = "~!@#$%^&*()_+`-={}|[]\\:\";'<>?,./";
//private const string KEY_SET_HALT_SPECIAL_CHARACTERS = "~!@#$%^&*()_+`-={}|[]\\:\";'<>?,./ ";
private const string KEY_SET_HALT_SPECIAL_CHARACTERS = "~!@#$%^&*()_+`-={}|[]:;'<>?,./";
private const string KEY_SET_HALT_KATAKANA = "アイウエオカキクケコサシスセソタチツテトナニムネノハヒフヘホマミムメモヤユヨラリルレロワオン";

private const string KEY_SET_FULL_UPPERCASE_LETTERS = "ABCDEFGHIJKLMNOPQRSRUVWXYZ";
private const string KEY_SET_FULL_LOWERCASE_LETTERS = "abcdefghijklmnopqrstuvwxyz";
private const string KEY_SET_FULL_NUMBERS = "1234567890";
private const string KEY_SET_FULL_SPECIAL_CHARACTERS = "~!@#$%^&*()_+‘-={}|[]¥:”;’<>?,./ ";
//private const string KEY_SET_FULL_SPECIAL_CHARACTERS = "~!@#$%^&*()_+‘-={}|[]¥:”;’<>?,./ ";
private const string KEY_SET_FULL_SPECIAL_CHARACTERS = "~!@#$%^&*()_+‘-={}|[]¥:”;’<>?,./";
private const string KEY_SET_FULL_HIRAGANA = "あいうえおかきくけこさしすせそたちつてとなにぬねのはひふへほまみむめもやゆよらりるれろわおン";
private const string KEY_SET_FULL_KATAKANA = "アイウエオカキクケコサシスセソタチツテトナニムネノハヒフヘホマミムメモヤユヨラリルレロワオン";

Expand Down

0 comments on commit 32aa8f4

Please sign in to comment.