public static void Main()
Console.WriteLine("Hello User! what Subprogram would you like to use?");
public static void GetPaste(string Reduncdanc)
WebClient wc = new WebClient();
Console.Write("Input the Pastebin ID >>: " + "\n");
string ConsoleID = Console.ReadLine();
string Paste = "https://www.pastebin.com/raw/" + ConsoleID;
Uri myUri = new Uri(Paste, UriKind.Absolute);
string pastebinGrabber = wc.DownloadString(myUri);
Console.WriteLine("The Pastebin contained: " + pastebinGrabber);
public static void Redo()