本文整理汇总了C#中Arguments.String方法的典型用法代码示例。如果您正苦于以下问题:C# Arguments.String方法的具体用法?C# Arguments.String怎么用?C# Arguments.String使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Arguments
的用法示例。
在下文中一共展示了Arguments.String方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ArgumentInQuotes
public void ArgumentInQuotes()
{
// this tests that the arguments can be in quates,
// use by the command adapter to specify the command and escape characters
string argument1Name = Arguments.DefaultArgumentPrefix + "blah";
string escapedSlash = "\\/";
string escapedQuote = "\\\"";
string expectedArgument1Value = argument1Name + " / \"value";
string[] arguments = new string[]{
argument1Name , // argument name
"\""+argument1Name+" "+ escapedSlash, // value part 1 of 2
escapedQuote + "value" + "\"", // value part 2 of 2
Arguments.DefaultArgumentPrefix+"other",
"otherValue"
};
// when I get the 'blah' argument value I expect a single string, with no surronding ", and escaped characters converted
Arguments splitArguments = new Arguments(arguments);
string argument1Value = splitArguments.String(argument1Name, true);
if (argument1Value != expectedArgument1Value)
{
throw new TestException();
}
// test that other arguments are not affected
if (splitArguments.String(Arguments.DefaultArgumentPrefix + "other", true) != "otherValue")
{
throw new TestException();
}
}
开发者ID:swish-climate-impact-assessment,项目名称:swish-kepler-actors,代码行数:33,代码来源:ArgumentFunctionsTests.cs