Convert an ascii byte array to a String.
Namespace: org.opendof.core.oal
Assembly: dof-oal (in dof-oal.dll) Version: 7.0.1.2
Syntax
C#
public static string bytesToAsciiString( byte[] data, int offset, int length )
Parameters
- data
- Type: SystemByte
The data to convert. Cannot be null. - offset
- Type: SystemInt32
The offset into the array where the conversion should start. - length
- Type: SystemInt32
The number of bytes to convert.
Return Value
Type: StringThe String representation of an ascii byte array.
Remarks
See Also