old_man
Member
This is a very simple code, I just can get it to work:
The error is this: "does not contain a static Main method"
I hope someone can point me in the right direction, to get this to work.
You can see I would like to build bots.:concern:
using System.Collections.Generic;
using System.Text.RegularExpressions;
using System.Net;
static void Main(string[] args)
{
var client = new WebClient();
var url = "http://www.gametrailers.com";
Console.Write(client.DownloadString(url));
Console.ReadKey();
}
The error is this: "does not contain a static Main method"
I hope someone can point me in the right direction, to get this to work.
You can see I would like to build bots.:concern:
Last edited by a moderator: