如果我有以下字节数组:
byte[] someArray = new byte { 0, 1, 2 };
我想通过反射将它复制到一个类的实例,你怎么能这样做?
// Inside a class method
PropertyInfo property = this.GetType().GetProperty("propertyName");
if(property.PropertyType == typeof(System.Byte[]))
{
property.SetValue(this, ???, ???); // How to set an array?
}
答案 0 :(得分:6)
if(property.PropertyType == typeof(System.Byte[]))
{
property.SetValue(this, someArray.Clone(), null);
}