[This is preliminary documentation and is subject to change.]
Convert a byte buffer to printable binary representation (i.e. <<"abc...">>)
Namespace: NFX.ErlangAssembly: NFX.Erlang (in NFX.Erlang.dll) Version: 3.0.0.1 (3.0.0.1)
public static string ToPrintableString(
byte[] buf,
int offset,
int count,
int maxLen = 0
)
public static string ToPrintableString(
byte[] buf,
int offset,
int count,
int maxLen = 0
)
Public Shared Function ToPrintableString (
buf As Byte(),
offset As Integer,
count As Integer,
Optional maxLen As Integer = 0
) As String
Public Shared Function ToPrintableString (
buf As Byte(),
offset As Integer,
count As Integer,
Optional maxLen As Integer = 0
) As String
public:
static String^ ToPrintableString(
array<unsigned char>^ buf,
int offset,
int count,
int maxLen = 0
)
public:
static String^ ToPrintableString(
array<unsigned char>^ buf,
int offset,
int count,
int maxLen = 0
)
static member ToPrintableString :
buf : byte[] *
offset : int *
count : int *
?maxLen : int
(* Defaults:
let _maxLen = defaultArg maxLen 0
*)
-> string
static member ToPrintableString :
buf : byte[] *
offset : int *
count : int *
?maxLen : int
(* Defaults:
let _maxLen = defaultArg maxLen 0
*)
-> string
Return Value
Type:
String