将整个消息字符串作为参数

时间:2017-02-05 15:32:21

标签: c# string arguments discord discord.net

我希望我的机器人在命令之后将整个消息作为一个整体参数。但是现在情况如下:
当我输入“!math 1 + 3”时,它只需要“1”作为参数。我希望机器人将整个字符串“1 + 3”作为参数。

这是我的代码:

    [Command("math")]
            public async Task Calculate(string equation)
            {
                string result = new DataTable().Compute(equation, null).ToString();
//Basically to calculate from the string to find the result
                if (result == "NaN")
                {
                    await Context.Channel.SendMessageAsync("Infinity or undefined");
                }
                else
                {
                    await Context.Channel.SendMessageAsync(result);
                }
            }

我目前正在使用Discord.NET v1.0

3 个答案:

答案 0 :(得分:1)

通常,您应该在引号中包含空格。例如:

application.exe“包含空格的一些参数”

答案 1 :(得分:1)

像Claudiu所说,你可以用引号括起来,或者......

使用[Remainder]属性,如此,

[Command("math")]
public async Task Calculate([Remainder]string equation)
{
    // Now equation will be everything after !math
    // Your code here
}

P.S。:在我们的Discord Server(查找#dotnet_discord-net)中询问未来的Discord.Net问题,您将更快地得到答案。

答案 2 :(得分:0)

如果其他人不使用 Discord.NET

public async Task Calc(CommandContext ctx, [RemainingText] string equation)