Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
rnd string
SUBMITTED BY:
emmek
DATE:
April 9, 2022, 9:28 p.m.
FORMAT:
C#
SIZE:
327 Bytes
Raw
Download
Tweet
HITS:
16460
Go to comments
Report
private
static
Random
random
=
new
Random
();
public
static
string
RandomString
(
int
length
)
{
const
string
chars
=
"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
;
return
new
string
(
Enumerable
.
Repeat
(
chars
,
length
)
.
Select
(
s
=>
s
[
random
.
Next
(
s
.
Length
)]).
ToArray
());
}
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus