是否可以使用扩展方法来扩展索引器?我希望能够从DataGridViewCell
给定的DataGridViewRow
使用标题文本中获取单元格的值,如下所示:
object o = row["HeaderText"];
我有这个代码
public static class Ext
{
public static object Cells(this DataGridViewRow r, string header)
{
foreach (DataGridViewCell c in r.Cells)
{
if (c.OwningColumn.HeaderText == header)
{
return c.Value;
}
}
return null;
}
}
我想要类似的索引器。谢谢。