/// <summary>
 /// Creates a delegate which can retrieve element of <paramref name="arrayType"/>.
 /// </summary>
 public static ArrayElementGetter DelegateForGetElement(this Type arrayType)
 {
     return(Reflect.ArrayGetter(arrayType));
 }