Converts an array of bytes to an array of strings.
Syntax
Visual Basic (Declaration) | |
---|
Public Shared Function ConvertToStringArray( _
ByVal data() As Byte _
) As String() |
Visual Basic (Usage) | Copy Code |
---|
Dim data() As Byte
Dim value() As String
value = BarcodeData.ConvertToStringArray(data) |
Parameters
- data
- Array of bytes to be converted.
Return Value
Character string that contains the converted array of bytes.
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