Skip to content

Instantly share code, notes, and snippets.

@eouw0o83hf
Created June 15, 2016 13:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eouw0o83hf/96087b193fd308200f083ce2c0d433a9 to your computer and use it in GitHub Desktop.
Save eouw0o83hf/96087b193fd308200f083ce2c0d433a9 to your computer and use it in GitHub Desktop.
LazyG()
private Guid LazyG(char a)
{
var sb = new StringBuilder();
for (var i = 0; i < 32; i++)
{
sb.Append(a);
}
return new Guid(sb.ToString());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment