方法名称预期不和谐机器人

时间:2017-02-19 04:01:53

标签: c# discord

当我尝试运行这个极其简单的命令来获取我的discord bot [见下文]时,我收到此错误:CS0149 C# Method name expected 我相信它指的是discord中的discord.connect。如果有人知道如何解决这个问题,将不胜感激。

命令:

using Discord;
using Discord.Commands;

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ImBotOdd
{
    class MyBot
    {
        DiscordClient discord;

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

            discord.ExecuteAndWait(async () =>
            {
                await discord.Connect("token", TokenType.Bot)("DONT COPY MY TOKEN");


        });
        }

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

1 个答案:

答案 0 :(得分:1)

我不知道你是否修好了它,但好像你还没有添加

“使用不和谐;”

否则它应该有效(在0.9上测试)