1

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

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; 
}
4

1 回答 1

0

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

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

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

于 2016-09-27T09:07:38.967 回答