本文介绍了在c#中更改数据表对象的数据类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在已经有数据的情况下更改c#中数据类型的数据类型。
我有一个int字段必须是typeof(字符串)
How to change the datatype of a datatbale in c# while already having data in.
I have an int field that has to be typeof(string)
推荐答案
System.Data.DataTable dt = new System.Data.DataTable();
dt.Columns.Add("Col1", typeof(int));
dt.Rows.Add(1);
System.Data.DataTable dt2 = new System.Data.DataTable();
dt2.Columns.Add("Col1", typeof(string));
dt2.Load(dt.CreateDataReader(), System.Data.LoadOption.OverwriteChanges);
这篇关于在c#中更改数据表对象的数据类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!