¿Alguien puede ayudarme a acceder, por ejemplo, al valor de la primera celda en la cuarta columna?
a b c d
1 2 3 5
g n m l
por ejemplo, ¿cómo acceder al valor d, si eso fuera datatable?
Gracias.
c#
asp.net
visual-studio-2008
datatable
el ninho
fuente
fuente
int number = dt.Rows[i].Field<int>(j);
string abc= dt.Rows[0]["column name"].ToString();
fuente
También puede probar (primera celda en la cuarta columna):
dt.Rows[0][3]
fuente
foreach(DataRow row in dt.Rows) { string value = row[3].ToString(); }
fuente
los datos d están en la fila 0 y la columna 3 para el valor d:
DataTable table; String d = (String)table.Rows[0][3];
fuente
public V[] getV(DataTable dtCloned) { V[] objV = new V[dtCloned.Rows.Count]; MyClasses mc = new MyClasses(); int i = 0; int intError = 0; foreach (DataRow dr in dtCloned.Rows) { try { V vs = new V(); vs.R = int.Parse(mc.ReplaceChar(dr["r"].ToString()).Trim()); vs.S = Int64.Parse(mc.ReplaceChar(dr["s"].ToString()).Trim()); objV[i] = vs; i++; } catch (Exception ex) { // DataRow row = dtError.NewRow(); row["r"] = dr["r"].ToString(); row["s"] = dr["s"].ToString(); dtError.Rows.Add(row); intError++; } } return vs; }
fuente