我想将DataRow转换为Object。我写了一堂课来做这件事。 像这样的错误:
No overload for method 'SetValue' takes 2 arguments
No overload for method 'GetValue' takes 1 arguments
但我不能使用GetValues()和SetValues()。将项目转换为4.5时。它的工作。 我的项目设置平台目标是3.5(必须 - 因为我连接设备必须使用.NET 3.5)。
如何解决这个问题?
这是我的代码:
public DataRowToObject(DataRow row)
{
List<PropertyInfo> listProperty = this.GetProperties();
foreach (PropertyInfo prop in listProperty)
{
if (!row.Table.Columns.Contains(prop.Name) ||
row[prop.Name] == null ||
row[prop.Name] == DBNull.Value)
{
prop.SetValue(this, null);
continue;
}
try
{
object value = Convert.ChangeType(row[prop.Name], prop.PropertyType);
prop.SetValue(this, value);
}
catch
{
prop.SetValue(this, null);
}
}
}
public virtual Hashtable GetParameters()
{
Type type = this.GetType();
List<PropertyInfo> listProperty = new List<PropertyInfo>(type.GetProperties());
Hashtable result = new Hashtable();
foreach (PropertyInfo prop in listProperty)
{
result.Add(prop.Name, prop.GetValue(this));
}
return result;
}