我正在阅读Excel文件并将其内容插入plugin.path
这样的内容:
plugin.path=/opt/confluent-4.0.0/share/java
这工作正常,但我需要List<DataRow>
答案 0 :(得分:-1)
我通过这段代码弄明白了:
List<DataRow> pStrings //this is my populated list
int y = 0;
foreach (DataRow str in pStrings)
{
string value = str[y].ToString();
y++;
}
使用此代码,我可以获得每个DataRow
的值。
感谢所有答案