C#获取一个数组的类型

假如我有一个Vector3类型的数组:Vector3 [] array;

在获取数组的子数组的时候,用多种方式:

用Linq的Skip方法,但是才Unity仿真中,如果大量使用linq语句,有可能造成性能上的损耗

用Array.Copy方法,它有多种重载的方法,我使用其中一种

[ReliabilityContract(Consistency.MayCorruptInstance, Cer.MayFail)]
public static void Copy(Array sourceArray, Array destinationArray, int length);
[ReliabilityContract(Consistency.MayCorruptInstance, Cer.MayFail)]
public static void Copy(Array sourceArray, int sourceIndex, Array destinationArray, int destinationIndex, int length);
[ReliabilityContract(Consistency.MayCorruptInstance, Cer.MayFail)]
public static void Copy(Array sourceArray, long sourceIndex, Array destinationArray, long destinationIndex, long length);

当创建子数组对象的时候

public static Array CreateInstance(Type elementType, params long[] lengths);
public static Array CreateInstance(Type elementType, params int[] lengths);
public static Array CreateInstance(Type elementType, int length1, int length2, int length3);
public static Array CreateInstance(Type elementType, int length1, int length2);
public static Array CreateInstance(Type elementType, int length);
public static Array CreateInstance(Type elementType, int[] lengths, int[] lowerBounds);

这里需要的是元素类型:即Vector3类型,

而array.GetType()得到的是数组类型:即Vector3[]类型

因而我们需要转化一下类型,而这样的操作也有不同,如获取其中的一个元素的值(GetValue(param)),然后该元素再GetType就是Vector3,这总不是一个好的办法,如果他是一个空数组呢?

所以在网上找了一下方法,通过将数组类中的中括号去掉获取元素类型名,然后在GetType:

 Type type;
 string typeName = array.GetType().FullName.Replace("[]", string.Empty);
 type = arrayType.Assembly.GetType(typeName);

 

你可能感兴趣的:(C#)