Created
April 29, 2018 12:14
-
-
Save NuarkNoir/084127b8f73f890a5f97191355ba7056 to your computer and use it in GitHub Desktop.
Strange String Generator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public string GenerateStrangeString(int ccount = 18) | |
{ | |
var output = ""; | |
for (var i = 0; i < ccount; i++) | |
{ | |
output = string.Concat(output, Convert.ToChar(new Random(i).Next(0, 255))); | |
} | |
return output; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment