Method Decode
Decode(Char[], Int32, Int32, Byte[], Int32, Int32)
Decodes the input
Declaration
public static void Decode(char[] inputArray, int inputOffset, int inputLength, byte[] outputArray, int outputOffset, int outputLength)
Parameters
Type | Name | Description |
---|---|---|
System.Char[] | inputArray | |
System.Int32 | inputOffset | Initial offset into |
System.Int32 | inputLength | Number of chars in |
System.Byte[] | outputArray | |
System.Int32 | outputOffset | Initial offset into outputArray |
System.Int32 | outputLength | Length of output, must be GetDecodedLength(inputArray, inputOffset, inputLength) |
Decode(Char[], Int32, Int32, SByte[], Int32, Int32)
Decodes the input char sequence into the output sbyte sequence. Before calling this method, ensure that the output array has sufficient capacity by calling GetDecodedLength(Char[], Int32, Int32).
Declaration
public static void Decode(char[] inputArray, int inputOffset, int inputLength, sbyte[] outputArray, int outputOffset, int outputLength)
Parameters
Type | Name | Description |
---|---|---|
System.Char[] | inputArray | |
System.Int32 | inputOffset | Initial offset into |
System.Int32 | inputLength | Number of chars in |
System.SByte[] | outputArray | |
System.Int32 | outputOffset | Initial offset into outputArray |
System.Int32 | outputLength | Length of output, must be GetDecodedLength(inputArray, inputOffset, inputLength) |