CS1513}预计第17行

时间:2017-08-22 04:43:22

标签: c# bots discord

好的。我已经查看了这里出现此错误的所有问题并查看了我的代码至少10次,但我无法找到错误。这是我的不和谐服务器的机器人,可以更好地自动化它。我计算了分号,括号等,但我无法找到问题所在。它说CS1513 } expected Line 17,但我看了一下,一切都很好。我的其他机器人运行得很好,但这个似乎并不像我一样。第17行是{下的public MyBot()

namespace Dexter
{
    class MyBot
    {
        DiscordClient discord;

        public MyBot()
        {
            discord = new DiscordClient(x =>
            {
                x.LogLevel = LogSeverity.Info;
                x.LogHandler = Log;
            });

            discord.ExecuteAndWait(async () =>
            {
                await discord.Connect("inserttokenhere", TokenType.Bot);
            });
        }

        private void Log(object sender, LogMessageEventArgs e)
        {
            Console.WriteLine(e.Message);
        }
    }
}

0 个答案:

没有答案