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.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…