Im getting an error with this code
the code is : using Discord; using Discord.Commands; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GODbot { class mybot { DiscordClient discord; CommandService commands; Random rand; public mybot() { discord = new DiscordClient(x => { x.LogLevel = LogSeverity.Info; x.LogHandler = log; }); discord.UsingCommands(x => { x.PrefixChar = '!'; x.AllowMentionPrefix = true; }); var commands = discord.GetService<CommandService>(); commands.CreateCommand("hello") .Do(async (e) => { await e.Channel.SendMessage("Hi Bitch!"); }); discord.ExecuteAndWait(async () => { await discord.Connect("MjU3MzU3MDUyODcwMDAwNjQx.Cy6I1Q.mSEtStNr7APKG-RvjB9-xmJRndk", TokenType.Bot); }); } private void log(object sender, LogMessageEventArgs e) { Console.WriteLine(e.Message); } } } and it keeps giving me the error: Error CS5001 Program does not contain a static 'Main' method suitable for an entry