random string unity code example
Example: unity random string
string RandomStringGenerator(int lenght)
{
//string st = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
string result = "";
for (int i = 0; i < lenght; i++)
{
char c = (char)('A' + Random.Range(0, 26));
result += c;
}
return result;
}