| ExternalLineHelpersToTextTuple Method |
Translate a tuple with an
ExternalLine object to a tuple with a line of text.
The source or output number remains unchanged.
Namespace:
Mavidian.DataConveyer.Common
Assembly:
DataConveyer (in DataConveyer.dll) Version: 3.4.6+1324144ff7
Syntax public static Tuple<string, int> ToTextTuple(
this Tuple<ExternalLine, int> extTuple
)
<ExtensionAttribute>
Public Shared Function ToTextTuple (
extTuple As Tuple(Of ExternalLine, Integer)
) As Tuple(Of String, Integer)
Parameters
- extTuple
- Type: SystemTupleExternalLine, Int32
An ExternalLine object along with corresponding source or target number.
Return Value
Type:
TupleString,
Int32A tuple with a line of text or null if parameter is null or tuple with null if parameter does not contain a line of text.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
TupleExternalLine,
Int32. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also