Ranorex传递数组作为参数

时间:2012-09-12 16:26:37

标签: c# c#-4.0 ranorex

我有一些计算要完成。我想将我的数组发送到一个进行一些计算的方法。如何格式化发送方法?如何格式化接收方法的接收签名行?如何拆分数组以使用每个元素?

public void PercentCompare()
{
    string[] cells = {
          "Repo.Path.ToString()", 
          "Repo.Path.ToString()", 
          "Repo.Path.ToString()"
       };

    Path.CountDoublePercent(cells[]);
}

public static void CountD(string[] cells)
{
    //trims
    string trimRow1 = string.Empty; 
    string trimRow2 = string.Empty;
    string trimTotal = string.Empty; 
}

1 个答案:

答案 0 :(得分:0)

http://www.ranorex.com/forum/passing-array-as-usercode-argument-t8098.html

这个站点说:不可能使用数组作为UserCode方法的参数

你能真正做到没有错误吗?