Skip to content

Commit 75329fe

Browse files
committed
Update RandomData.cs
#1
1 parent 4c4395f commit 75329fe

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Source/RandomData.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,11 +193,13 @@ public static string GetString(int minLength = 5, int maxLength = 20, string all
193193
}
194194
}
195195

196+
// Some characters are left out because they are hard to tell apart.
196197
private const string DEFAULT_ALPHA_CHARS = "abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ";
197198
public static string GetAlphaString(int minLength = 5, int maxLength = 20) {
198199
return GetString(minLength, maxLength, DEFAULT_ALPHA_CHARS);
199200
}
200201

202+
// Some characters are left out because they are hard to tell apart.
201203
private const string DEFAULT_ALPHANUMERIC_CHARS = "abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789";
202204
public static string GetAlphaNumericString(int minLength = 5, int maxLength = 20) {
203205
return GetString(minLength, maxLength, DEFAULT_ALPHANUMERIC_CHARS);

0 commit comments

Comments
 (0)