Version

ConvertObjectToString Method

Converts an object to string
Syntax
'Declaration
 
Protected Function ConvertObjectToString( _
   ByVal oObject As System.Object _
) As System.String
protected System.string ConvertObjectToString( 
   System.object oObject
)
protected: System.string* ConvertObjectToString( 
   System.Object* oObject
) 

Parameters

oObject
The input object. This can be a string or number or ObservableCollection[object]

Return Value

String equivalent of the entered object(string or number) or a comma-delimited string of the object array(ObservableCollection[object])
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