Hi
This is my first posting here in this forum. I hope the formatting is right. Otherwise please let me know and i will do it better the next time :-)
I'm trying to make a simple program which opens a URL when executed (double clicked). I am using mingw from mingw.org on Windows10.
Following is my code which won't compile with the error message saying that the class is unknown.
class Program
{
static void Main(string[] args)
{
System.Diagnostics.Process.Start("
https://www.google.com/search?q=test");
}
}
I am a student in information technology and quite a beginner in C and C++. This program in C/C++ which i am trying to code right now is just a small part of much bigger web application which i'm doing as a study work. At the moment i don't have the time to go much deeper into C/C++ but later i would like to. However i like coding and i would like to try to get this done with some help.
If someone could give me some hints on how to do this or let me know about some tutorials dealing with this topic i would be very thankful.
Regards and thanks in advance,
Max