QuickObjects.ObjectBase Send comments on this topic.
GetDelimetedValue Method
See Also 
Akal.QuickObjects.ObjectBase Namespace > BaseBusinessObject Class : GetDelimetedValue Method

GetDelimetedValue

Goes through all records in an array of DataRows and adds all the values for the field into a delimited String where each value is separated by passed in value of delimit parameter.

Parameters:
Description
drsAn array of DataRows that contain the field whose value will be used to created the delimited String.
fieldfield that must exist in each DataRow.
delimitString value that will be used as a separator between each field value.

Returns:
Type
System.String

Overload List

OverloadDescription
GetDelimetedValue(DataRow[],String,String)GetDelimetedValue

Goes through all records in an array of DataRows and adds all the values for the field into a delimited String where each value is separated by passed in value of delimit parameter.

Parameters:
Description
drsAn array of DataRows that contain the field whose value will be used to created the delimited String.
fieldfield that must exist in each DataRow.
delimitString value that will be used as a separator between each field value.

Returns:
Type
System.String
 

GetDelimetedValue(DataRowCollection,String,String)GetDelimetedValue

Goes through all records a DataRowCollection and adds all the values for the field into a delimited String where each value is separated by passed in value of delimit parameter.

Parameters:
Description
drsAn array of DataRows that contain the field whose value will be used to created the delimited String.
fieldfield that must exist in each DataRow.
delimitString value that will be used as a separator between each field value.

Returns:
Type
System.String
 

GetDelimetedValue(Object[],String)GetDelimetedValue

Goes through all records an array of objects and adds all the values into a delimited String where each value is separated by passed in value of delimit parameter.

Parameters:
Description
objArrAn array of objects that will be used to created the delimited String.
delimitString value that will be used as a separator between each field value.

Returns:
Type
System.String
 

Requirements

Target Platforms: .NET Framework 1.1 or .NET Framework 2.0

See Also