Skip to content

Instantly share code, notes, and snippets.

@kmlprtsng
Created August 14, 2013 15:31
Show Gist options
  • Select an option

  • Save kmlprtsng/6232193 to your computer and use it in GitHub Desktop.

Select an option

Save kmlprtsng/6232193 to your computer and use it in GitHub Desktop.
Random String Generator
private string GenerateRandomString()
{
return Path.GetRandomFileName().Substring(0, 8);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment