public static void Main()
Random rnd = new Random();
Console.WriteLine("Welcome to my Dice Roller, how many dies would you like to roll?");
string rawInput = Console.ReadLine();
Int32.TryParse(rawInput, out refinedInput);
Console.WriteLine("The Results Are...");
bool Bob = Int32.TryParse(rawInput, out refinedInput);
Console.WriteLine("Nothing, your input is invalid!");
for (int i = 0; i < refinedInput; i++)
Console.WriteLine(rnd.Next(1, 7));
Console.WriteLine("What are your next inputs?");