ArcFM Responder Mobile Developer Guide
ConcatenateStrings Method






A System.String
An array of System.String
Concatenates a specified separator between each element of a specified String array, yielding a single concatenated string.
Syntax
'Declaration
 
Public MustOverride Function ConcatenateStrings( _
   ByVal separator As System.String, _
   ByVal ParamArray value() As System.String _
) As System.String
'Usage
 
Dim instance As DataSyntax
Dim separator As System.String
Dim value() As System.String
Dim value As System.String
 
value = instance.ConcatenateStrings(separator, value)
public abstract System.string ConcatenateStrings( 
   System.string separator,
   params System.string[] value
)
public function ConcatenateStrings( 
    separator: System.String;
   params  value: System.Stringarray of
): System.String; abstract; 
public __abstract function ConcatenateStrings( 
   separator : System.String,
   value : System.String[]
) : System.String;
public: abstract System.string* ConcatenateStrings( 
   System.string* separator,
   params System.string*[]* value
) 
public:
abstract System.String^ ConcatenateStrings( 
   System.String^ separator,
   ... System.array<String^>^ value
) 

Parameters

separator
A System.String
value
An array of System.String

Return Value

A System.String consisting of the elements of value interspersed with the separator string
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

Reference

DataSyntax Class
DataSyntax Members

Send Feedback