/// <summary> /// Copies the parameter types to the given array. /// </summary> /// <param name="target">The target array.</param> /// <param name="offset">The target offset to copy to.</param> public void CopyTo(Type[] target, int offset) => ParameterTypes.CopyTo(target, offset);