我有一个数据 View 定义为:
DataView dvPricing = historicalPricing.GetAuctionData().DefaultView;
这是我尝试过的方法,但是它返回名称,而不是列中的值:
dvPricing.ToTable().Columns["GrossPerPop"].ToString();
最佳答案
您需要指定要获取其值的行。我可能会更喜欢table.Rows [index] [“GrossPerPop”]。ToString()
关于c# - 如何从DataView中的列获取值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/387334/