Gets a writable array of method arguments.

Namespace:  PostSharp.Laos
Assembly:  PostSharp.Laos (in PostSharp.Laos.dll)

Syntax

Visual Basic (Declaration)
Public Function GetWritableArgumentArray As Object()
C#
public Object[] GetWritableArgumentArray()
Visual C++
public:
array<Object^>^ GetWritableArgumentArray()

Return Value

The array of method arguments, or null if the method has no arguments.

Remarks

You should modify only arguments passed by reference (out and ref in C#). If you need to change input arguments, consider using OnMethodInvocationAspect.

See Also