convert (b1b2b3b4) to (c1c2c3c4c5) with
(b1 * 256 ^3) + (b2*256^2) + (b3 * 256) + b4 = (c1 * 85 ^4) + (c2 * 85 ^3) + (c3 * 85 ^2) + (c4 * 85) + c5
Namespace: CuteEditor.Convertor.PDFAssembly: CuteEditor (in CuteEditor.dll) Version: 6.7.0.0
Syntax
C# |
---|
public override byte[] Encode( byte[] bytes ) |
Visual Basic |
---|
Public Overrides Function Encode ( _ bytes As Byte() _ ) As Byte() |
Visual C++ |
---|
public: virtual array<unsigned char>^ Encode( array<unsigned char>^ bytes ) override |
Parameters
- bytes
- Type: array<System..::..Byte>[]()[][]