Loupe - Log - Monitor - Resolve
Gibraltar.Agent.PostSharp Namespace / GAspectBase Class / ObjectArrayToStrings Method
An array of objects, such as a parameter list.
True to get object details by evaluating ToString() even on class types. False to avoid calling ToString() on class types (still used for struct and enum types).

In This Topic
    ObjectArrayToStrings Method
    In This Topic
    Produce an array of the same length processed into strings.
    Syntax
    'Declaration
     
    
    Protected Shared Function ObjectArrayToStrings( _
       ByVal array() As Object, _
       ByVal getObjectDetails As Boolean _
    ) As String()
    protected static string[] ObjectArrayToStrings( 
       object[] array,
       bool getObjectDetails
    )

    Parameters

    array
    An array of objects, such as a parameter list.
    getObjectDetails
    True to get object details by evaluating ToString() even on class types. False to avoid calling ToString() on class types (still used for struct and enum types).

    Return Value

    An array of strings representing each item in the provided array.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also