如何比较列值上的两个网格

时间:2015-04-18 09:42:55

标签: c# collections foreach coded-ui-tests icomparable

我们有两个网格位于另一个之上,我们需要使用列名来比较网格的列值。

Grid with same column names

我希望以这样的方式实现代码:

//Comparing column value using column name.
if (Grd1Coll["PricingStream"].value == Grd2Coll["PricingStream"].value)
{
    //do this
}
else 
{
    //do this
}

我应该选择什么数据结构,如字典,hastable,hashset等?另外,如果有可能,我如何在这里使用IComparator界面?

0 个答案:

没有答案