-1
public class Test{
    public string name{get;set}
    public short age{get;set;}
}

……

var type = typeof(Test);

var ins = Activator.CreateInstance(type);

type.InvokeMember("name", BindingFlags.DeclaredOnly |
                    BindingFlags.Public | BindingFlags.NonPublic |
                    BindingFlags.Instance | BindingFlags.SetProperty, null,   ins ,new object[] { "alibaba" });

type.InvokeMember("age", BindingFlags.DeclaredOnly |
                    BindingFlags.Public | BindingFlags.NonPublic |
                    BindingFlags.Instance | BindingFlags.SetProperty | BindingFlags.SetField | BindingFlags.SuppressChangeType, null, ins ,new object[] { 2 });

...

运行时找不到方法“age”的异常,如果我将“age”的类型更改为 int 或其他 32+ 数字类型,它可以工作

InvokeMember 是否不支持 short、int16 等类型。或者我可能会改变另一种分配价值的方式。

任何帮助表示赞赏

4

1 回答 1

0

你能试试这个吗?它对我有用。

//credit to stack overflow post and the following post
//https://stackoverflow.com/questions/1089123/setting-a-property-by-reflection-with-a-string-value

Test test = new Test();
PropertyInfo property = typeof(Test).GetProperty("name");
property.SetValue(test, "NameValue", null);
PropertyInfo propertyTwo = typeof(Test).GetProperty("age");
short aShort = 49;
propertyTwo.SetValue(test, aShort, null);
于 2017-07-14T06:59:33.247 回答