I just need redirect from console to web url, Is that possible in dot net C#? my code is below.
public static class Program
{
public static void Main(String[] args)
{
Console.Write("Waiting for a connect to http://www.abcde.com");
Console.Read();
}
}
is that possible in C#? Please suggest.
To open a url in the default browser, you can use
System.Diagnostics.Process.Start("http://stackoverflow.com");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With