Monobjc.Utils.ImplicitMethodBinder.ReorderArgumentArray C# (CSharp) Method

ReorderArgumentArray() public method

Upon returning from M:System.Reflection.Binder.BindToMethod(System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Object[]@,System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[],System.Object@), restores the args argument to what it was when it came from BindToMethod.
public ReorderArgumentArray ( object &args, object state ) : void
args object The actual arguments that are passed in. Both the types and values of the arguments can be changed. ///
state object A binder-provided object that keeps track of argument reordering. ///
return void
		public override void ReorderArgumentArray (ref object[] args, object state)
		{
			throw new NotImplementedException ();
		}
	}