我可以从具有名为“Col1”和“Col2”的列的 .net 数据表中获取一个值,如下所示:
DataTable dt = new DataTable()
// some more code that fills it
Console.Writeline("{0}, {1}", dt.Rows[0]["Col1"], dt.Rows[0]["Col2"]);
如果我的数据表有很多列,我也可以使用变量
string x = // something that will be one of the columns in the table
dt.Rows[i][x] = "Some new value"
在带有 Record 变量的 NAV 中是否有可能发生这样的事情?