How to run Google query with the default browser in C#

1 Answer

0 votes
using System.Diagnostics;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            string q = "programming";

            Process.Start("https://www.google.com/search?q=" + q);
        }
    }
}


/*
run:

 
*/

 



answered Aug 9, 2018 by avibootz

Related questions

1 answer 239 views
1 answer 218 views
1 answer 196 views
1 answer 240 views
1 answer 203 views
203 views asked Mar 15, 2016 by avibootz
...