/// <summary>
 /// Creates a delegate which can set element of <paramref name="arrayType"/>.
 /// </summary>
 public static ArrayElementSetter DelegateForSetElement(this Type arrayType)
 {
     return(Reflect.ArraySetter(arrayType));
 }