Process.Start to open an URL, getting an Exception?

前端 未结 4 647
慢半拍i
慢半拍i 2020-12-06 05:56

I\'m trying to open an URL following a simple method written all over google and even MSDN. But for unknown reasons I get an Exception as follows:

Win32Except         


        
4条回答
  •  我在风中等你
    2020-12-06 06:52

    You are looking for the string overload of Process.Start():

    Process.Start("http://github.com/tbergeron/todoTxt");
    

提交回复
热议问题