| HelperCreateDelimitedString Method  | 
            Creates a delimited string containing the object's string values.
            
 
Namespace: Bio.UtilAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntaxpublic static string CreateDelimitedString(
	string delimiter,
	params Object[] objectCollection
)
Public Shared Function CreateDelimitedString ( 
	delimiter As String,
	ParamArray objectCollection As Object()
) As String
public:
static String^ CreateDelimitedString(
	String^ delimiter, 
	... array<Object^>^ objectCollection
)
static member CreateDelimitedString : 
        delimiter : string * 
        objectCollection : Object[] -> string 
Parameters
- delimiter
 - Type: SystemString
The string that will delimit the objects - objectCollection
 - Type: SystemObject
The objects to put in the string 
Return Value
Type: 
StringA delimiter-delimited string
See Also