反射 - 考虑数据类型设置对象属性

发布于 2024-10-21 02:31:00 字数 526 浏览 1 评论 0原文

我已经发现可以使用反射设置属性的值: 使用以下命令设置对象属性反射

但我的问题是我的数据仅以字符串形式存在。因此,我当然总是会遇到异常,因为它不是正确的类型。

有没有一种方法可以自动尝试将字符串解析为相应的类型(DateTime、int、decimal、float)?

下面是我正在使用的代码:

Type myType = obj.GetType();
PropertyInfo[] props = myType.GetProperties();

foreach (PropertyInfo prop in props)
{
   setProperty(obj, prop, data[prop.Name]);
}

data 是一个简单的关联数组,其中包含字符串形式的数据。这些数据应该映射到 obj 中。

I already found out that it is possible to set the value of a property using reflection: Set object property using reflection

But my problem is that my data exists only as string. Therefore of course I always get an exception because it is not the right type.

Is there a way of automatically trying to parse the string to the according type (DateTime, int, decimal, float)?

Below is the code I'm using:

Type myType = obj.GetType();
PropertyInfo[] props = myType.GetProperties();

foreach (PropertyInfo prop in props)
{
   setProperty(obj, prop, data[prop.Name]);
}

data is a simple associative array that contains the data as string. These data are supposed to be mapped into obj.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

与往事干杯 2024-10-28 02:31:00

您可以使用 Convert 类:

   var value = Convert.ChangeType(data[prop.Name], prop.PropertyType);
   setProperty(obj, prop, value);

You can use the Convert class:

   var value = Convert.ChangeType(data[prop.Name], prop.PropertyType);
   setProperty(obj, prop, value);
久夏青 2024-10-28 02:31:00

您应该能够使用 TypeConverter

var converter = TypeDescriptor.GetConverter(prop.PropertyType);
var value = converter.ConvertFromString(data[prop.Name]);
setProperty(obj,prop,value);

You should be able to use the TypeConverter:

var converter = TypeDescriptor.GetConverter(prop.PropertyType);
var value = converter.ConvertFromString(data[prop.Name]);
setProperty(obj,prop,value);
原野 2024-10-28 02:31:00

您可以在 TypeConverter代码>System.ComponentModel:

foreach (PropertyInfo prop in props)
{
    var value = data[prop.Name];
    prop.SetValue(obj, TypeConverter.ConvertTo(value, prop.PropertyType), null);
}

You can use the TypeConverter class in System.ComponentModel:

foreach (PropertyInfo prop in props)
{
    var value = data[prop.Name];
    prop.SetValue(obj, TypeConverter.ConvertTo(value, prop.PropertyType), null);
}
自找没趣 2024-10-28 02:31:00
  PropertyInfo[] Properties = typeof(InvoiceLineItemSummary).GetProperties();     

            foreach (PropertyInfo objProperty in Properties)
            {
                    if (columns.ConvertAll(column=>column.ToLower()).Contains(objProperty.Name.ToLower()))
                    {
                        if (Nullable.GetUnderlyingType(objProperty.PropertyType) != null)
                        {
                            if (Nullable.GetUnderlyingType(objProperty.PropertyType).ToString() == "System.Decimal")
                                vm.InvoiceLineItemSummaries.ToList().ForEach(val => val.GetType().GetProperty(objProperty.Name).SetValue(val,  Math.Round(Convert.ToDecimal(val.GetType().GetProperty(objProperty.Name).GetValue(val, null)), 2), null));

                        }
                        else if(objProperty.PropertyType.ToString() == "System.Decimal")
                            vm.InvoiceLineItemSummaries.ToList().ForEach(val => val.GetType().GetProperty(objProperty.Name).SetValue(val, Math.Round(Convert.ToDecimal(val.GetType().GetProperty(objProperty.Name).GetValue(val, null)), 2), null));
                    }  
            }


//vm.InvoiceLineItemSummary is List of classobject
//InvoiceLineItemSummary is class
  PropertyInfo[] Properties = typeof(InvoiceLineItemSummary).GetProperties();     

            foreach (PropertyInfo objProperty in Properties)
            {
                    if (columns.ConvertAll(column=>column.ToLower()).Contains(objProperty.Name.ToLower()))
                    {
                        if (Nullable.GetUnderlyingType(objProperty.PropertyType) != null)
                        {
                            if (Nullable.GetUnderlyingType(objProperty.PropertyType).ToString() == "System.Decimal")
                                vm.InvoiceLineItemSummaries.ToList().ForEach(val => val.GetType().GetProperty(objProperty.Name).SetValue(val,  Math.Round(Convert.ToDecimal(val.GetType().GetProperty(objProperty.Name).GetValue(val, null)), 2), null));

                        }
                        else if(objProperty.PropertyType.ToString() == "System.Decimal")
                            vm.InvoiceLineItemSummaries.ToList().ForEach(val => val.GetType().GetProperty(objProperty.Name).SetValue(val, Math.Round(Convert.ToDecimal(val.GetType().GetProperty(objProperty.Name).GetValue(val, null)), 2), null));
                    }  
            }


//vm.InvoiceLineItemSummary is List of classobject
//InvoiceLineItemSummary is class
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文