如何使用反射复制数组



如果我有以下字节数组:

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?
} 

Use Array.Clone():

if(property.PropertyType == typeof(System.Byte[]))
{
    property.SetValue(this, someArray.Clone(), null); 
} 

相关内容

  • 没有找到相关文章

最新更新