Converts an array of strings to an array of bytes.
Syntax
Visual Basic (Declaration) | |
---|
Public Shared Function ConvertFromStringArray( _
ByVal data() As String _
) As Byte() |
Visual Basic (Usage) | Copy Code |
---|
Dim data() As String
Dim value() As Byte
value = BarcodeData.ConvertFromStringArray(data) |
Parameters
- data
- Array of strings to be converted
Return Value
Array of bytes contains the converted array of strings.
Example
Requirements
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
See Also