Pair<T1, T2>.ToString Method
Provides a string representation of the two values in the pair.
Namespace: Microsoft.BusinessData.Infrastructure
Assembly: Microsoft.BusinessData (in Microsoft.BusinessData.dll)
Syntax
'Declaration
Public Overrides Function ToString As String
'Usage
Dim instance As Pair
Dim returnValue As String
returnValue = instance.ToString()
public override string ToString()
Return Value
Type: System.String
The string representation of the pair.
Remarks
If either value is not a null reference (Nothing in Visual Basic), the format is [firstvalue.ToString(),secondvalue.ToString()].