怪异的跨类方法调用

时间:2018-12-29 09:14:02

标签: c# discord

基本上,我正在基于开放源代码项目开发应用程序,但遇到了一些麻烦。我基本上是想让SendText()发送文本,但是我发现它非常延迟。我做了一些进一步的测试,发现它不是SendText()方法本身。这是我的discord命令代码:

    [Command("test")]
    public async Task TestAsync()
    {
        ChatBots.DiscToGame.test = true;
    }

这是我的其中带有SendText()方法的类的代码。

public class DiscToGame : ChatBot
{
    public static bool test;

    public override void GetText(string text)
    {
        text = GetVerbatim(text);

        if (test == true)
        {
            test = false;
            SendText("Test123");
        }

0 个答案:

没有答案