无法在项目C#中使用GetValues和SetValues

时间:2015-12-14 07:12:09

标签: c#

我想将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;
    }

1 个答案:

答案 0 :(得分:9)

{4.5}中没有添加索引器的PropertyInfo.SetValuePropertyInfo.GetValue存在重载。

但这只是将null传递给以前版本的索引器参数(使用thisthis重载)。

所以:

prop.SetValue(this, value, null);

prop.GetValue(this, null);

这应该适用于.NET .3.5(最新版本)......实际上适用于NET 2.0及以上版本: - )