本文整理汇总了C#中CommandSet.Parse方法的典型用法代码示例。如果您正苦于以下问题:C# CommandSet.Parse方法的具体用法?C# CommandSet.Parse怎么用?C# CommandSet.Parse使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CommandSet
的用法示例。
在下文中一共展示了CommandSet.Parse方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Can_Find_Valid_Match_With_Multiple_Signatures
public void Can_Find_Valid_Match_With_Multiple_Signatures()
{
var setFinished = false;
var options = new CommandSet(
new []{
new CommandArgument("help|--help","Used to display help information", v => setFinished = !setFinished)
});
options.Parse("help");
Assert.IsTrue(setFinished); //This should have been set to true by the lamba expression
options.Parse("--help");
Assert.IsFalse(setFinished); //Should have been set to "false" when the options found it ;)
}
示例2: Can_Execute_Nested_Commands
public void Can_Execute_Nested_Commands()
{
var foundNet = false;
var foundSend = false;
var foundSendArguments = false;
var options = new CommandSet()
{
new CommandArgument("net|--net","{net} performs some network communication and status operations.", v => foundNet = true,
new CommandSet()
{
new CommandArgument("send", "{net send} sends a message to another client on the network", v =>
{
foundSend = true;
if (v[0] != null && v[1] != null)
foundSendArguments = true;
})
})};
var commandLine = "net send * \"Hello everyone!\"";
options.Parse(commandLine);
Assert.IsTrue(foundNet);
Assert.IsTrue(foundSend);
Assert.IsTrue(foundSendArguments);
}
示例3: Can_Match_Command_Regardless_Of_Case
public void Can_Match_Command_Regardless_Of_Case()
{
var setFinished = false;
var options = new CommandSet(
new[]{
new CommandArgument("help|--help","Used to display help information", v => setFinished = !setFinished)
});
options.Parse("HELP");
Assert.IsTrue(setFinished); //This should have been set to true by the lamba expression
}