Skip to content

Instantly share code, notes, and snippets.

@Buildstarted
Created December 24, 2015 19:55
Show Gist options
  • Save Buildstarted/0fd5cbcf01dbfe75229a to your computer and use it in GitHub Desktop.
Save Buildstarted/0fd5cbcf01dbfe75229a to your computer and use it in GitHub Desktop.
using System;
namespace MerryChristmas
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine(RandomString(-993131628) + " " + RandomString(-2146778827));
Console.ReadKey();
}
public static String RandomString(int i)
{
var ran = new Random(i);
var result = "";
while (true)
{
int k = ran.Next(27);
if (k == 0)
{
break;
}
result += (char)('`' + k);
}
return result;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment