对象与目标类型不匹配

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了对象与目标类型不匹配相关的知识,希望对你有一定的参考价值。

if (dt.Columns.Count > 1) range.Borders[Excel.XlBordersIndex.xlInsideVertical].Weight = Excel.XlBorderWeight.xlThin; (dt为datatable对象)
我在用asp.net编程,将数据导出到excel时,老是报这个异常:
异常详细信息: System.Reflection.TargetException: 对象与目标类型不匹配。

参考技术A 检查typeof(range.Borders[0])与typeof(Excel.XlBorderWeight.xlThin)是否同一类型.本回答被提问者采纳 参考技术B 导出excel 有这么麻烦吗? 随便页面放个数据控件。。把数据取出来 导出到excel 不就可以了嘛 。。导入导出 都一样的简单。。。每行去读写。好麻烦

property.GetValue(this, null) 导致“对象与目标类型不匹配”

【中文标题】property.GetValue(this, null) 导致“对象与目标类型不匹配”【英文标题】:property.GetValue(this, null) leads to "Object does not match target type" 【发布时间】:2013-11-16 09:48:35 【问题描述】:

我有一个这样的数据库类

class Database
    
        [Browsable(false)]
        public long Session  get; set; 
        public string Förnamn  get; set; 
        public string Efternamn  get; set; 
        public string Mail  get; set;    
    

DataGridView 使用 BindingList 作为它的数据源,我检索 gridview 的选定行作为数据库类实例,如下所示:

Database currentObject = (Database)dataGridView1.CurrentRow.DataBoundItem;

现在我正在尝试像这样遍历“currentObject”的属性:

foreach (PropertyInfo property in currentObject.GetType().GetProperties())
                 
            var name = property.Name;
            object obj = property.GetValue(this, null);    
        

但是在线 object obj = property.GetValue(this, null); 它崩溃了,我得到:

“System.Reflection.TargetException”类型的未处理异常 发生在 mscorlib.dll 中

附加信息:对象与目标类型不匹配。

我在这里错过了什么?

【问题讨论】:

【参考方案1】:

你必须改变这条线

 object obj = property.GetValue(this, null);  

object obj = property.GetValue(currentObject, null);

GetValue 的第一个参数需要目标实例来获取值。所以当你说this运行时抛出异常说this中不存在这样的属性。

【讨论】:

噢!非常感谢! :) 我知道,必须等 10 分钟 :) @SriramSakthivel,我有类似的情况,我有 2 个类,其中包含 ReferenceTypes,但我的 GetValue() 第一次工作,第二次失败。你能帮忙吗 @CSharped 失败是什么意思?以什么方式失败,有什么例外吗?我建议您使用失败的代码提出新问题。如果你想让我看的话,你可以把它链接在这里。谢谢【参考方案2】:

试试这个

foreach (PropertyInfo property in currentObject.GetType().GetProperties())
         
    var name = property.Name;
    object obj = property.GetValue(currentObject, null);    

【讨论】:

以上是关于对象与目标类型不匹配的主要内容,如果未能解决你的问题,请参考以下文章

property.GetValue(this, null) 导致“对象与目标类型不匹配”

Visual Studio扩展自定义命令错误:“对象与目标类型不匹配”

AutoMapper的介绍与使用

Lodash 合并:仅在源值与目标值匹配时复制对象属性

目标与目标模式不匹配

如何在Haskell中与代数类型进行模式匹配