该属性的值与c#中的目标类型不匹配(使用反射获取属性值)

时间:2016-03-03 22:13:01

标签: c# reflection

我有一个包含此属性的类。

selected = '';

$('img').click(function(){
    console.log($(this).attr('alt'));
    selected = $(this).attr('alt');
});

$('#comments').click(function(){
    insertAtCaret('comments',selected)
    // Clear the selection so it isn't copied repeatedly
    selected = '';
});

// Copied from the linked answer
function insertAtCaret(areaId,text) {
    var txtarea = document.getElementById(areaId);
    var scrollPos = txtarea.scrollTop;
    var strPos = 0;
    var br = ((txtarea.selectionStart || txtarea.selectionStart == '0') ? 
        "ff" : (document.selection ? "ie" : false ) );
    if (br == "ie") { 
        txtarea.focus();
        var range = document.selection.createRange();
        range.moveStart ('character', -txtarea.value.length);
        strPos = range.text.length;
    }
    else if (br == "ff") strPos = txtarea.selectionStart;

    var front = (txtarea.value).substring(0,strPos);  
    var back = (txtarea.value).substring(strPos,txtarea.value.length); 
    txtarea.value=front+text+back;
    strPos = strPos + text.length;
    if (br == "ie") { 
        txtarea.focus();
        var range = document.selection.createRange();
        range.moveStart ('character', -txtarea.value.length);
        range.moveStart ('character', strPos);
        range.moveEnd ('character', 0);
        range.select();
    }
    else if (br == "ff") {
        txtarea.selectionStart = strPos;
        txtarea.selectionEnd = strPos;
        txtarea.focus();
    }
    txtarea.scrollTop = scrollPos;
}

我想使用反射来读取该属性的值。

public List<string> Messages { get; set; }

但是我收到了这个错误:

  

&#34;对象与目标类型不匹配。&#34;

我用过这一行:

List<string> messages = new List<string>();
PropertyInfo prop = myType.GetProperty("Messages");
var message = prop.GetValue(messages);

而不是

var message = prop.GetValue(messages,null);

但我仍然得到同样的错误。

1 个答案:

答案 0 :(得分:2)

PropertyInfo包含有关Messages属性的元数据。您可以使用该PropertyInfo在该类型的某个实例上获取或设置该属性的值。这意味着您需要将您想要读取属性Messages的类型实例传递到GetValue调用中:

messages = (List<string>)prop.GetValue(instanceOfMyType);

以下是您尝试执行的操作示例:

class A
{
    public List<string> Messages { get; set; }

    public static void Test()
    {
        A obj = new A { Messages = new List<string> { "message1", "message2" } };
        PropertyInfo prop = typeof(A).GetProperty("Messages");
        List<string> messages = (List<string>)prop.GetValue(obj);
    }
}

仅仅是为了记录,这种实现在现实生活中毫无意义,因为你可以直接通过obj.Messages获得价值