Is it possible to use extension methods to extend an indexer? I want to be able to get cell's value from DataGridViewCell
of given DataGridViewRow
using header text like this:
object o = row["HeaderText"];
I have this code
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;
}
}
and I want similar indexer. Thanks.