'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.