static public string RollDice()
{
System.Random myrand = new System.Random();
int one;
int two;
repeat:
one = myrand.Next(6);
two = myrand.Next(6);
if (one > two)
{
return "one";
}
else if (one < two)
{
return "two";
}
else
{
goto repeat;
}
}
Rolling dice isn't that hard.