本文介绍了如何从c#中的数据表中按特定列名获取列值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何从c中的数据表中按特定列名获取列值#
请帮助..
how to get column values by specific column name from datatable in c#
please help..
推荐答案
DataView dv = new DataView(Your DataTable);
DataTable dt = dv.ToTable(true, "Your Specific Column Name");
//this dt contains only selected column values.
我希望这会对你有所帮助。
谢谢
Mohan G
I hope this will help you.
Thank's
Mohan G
这篇关于如何从c#中的数据表中按特定列名获取列值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!