BaseXEncode Method (Byte, Int32, Int32, String, Int32)
|
Encode bytes in given base.
Namespace:
Guardtime.KSI.Utils
Assembly:
ksi-net-api (in ksi-net-api.dll) Version: 3.11.534.0 (3.11.534.0)
Syntaxpublic string Encode(
byte[] bytes,
int off,
int len,
string sep,
int freq
)
Public Function Encode (
bytes As Byte(),
off As Integer,
len As Integer,
sep As String,
freq As Integer
) As String
public:
String^ Encode(
array<unsigned char>^ bytes,
int off,
int len,
String^ sep,
int freq
)
member Encode :
bytes : byte[] *
off : int *
len : int *
sep : string *
freq : int -> string
Parameters
- bytes
- Type: SystemByte
data bytes - off
- Type: SystemInt32
offset - len
- Type: SystemInt32
length - sep
- Type: SystemString
separator - freq
- Type: SystemInt32
frequency
Return Value
Type:
Stringbytes string representation in given base
See Also