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