Encoding.GetString Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
When overridden in a derived class, decodes a sequence of bytes from the specified byte array into a string.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Overridable Function GetString ( _ bytes As Byte(), _ index As Integer, _ count As Integer _ ) As String
Parameters
- bytes
- Type:
System.Byte
()
The byte array containing the sequence of bytes to decode.
- index
- Type: System.Int32
The zero-based index of the first byte to decode.
- count
- Type: System.Int32
The number of bytes to decode.
Return Value
Type: System.StringA String containing the results of decoding the specified sequence of bytes.
| Exception | Condition |
|---|---|
| ArgumentNullException | bytes is Nothing. |
| ArgumentOutOfRangeException | index or count is less than zero. -or- index and count do not denote a valid range in bytes. |
| DecoderFallbackException | A fallback occurred. |
If the data to be converted is available only in sequential blocks (such as data read from a stream) or if the amount of data is so large that it needs to be divided into smaller blocks, the application should use the Decoder or the Encoder provided by the GetDecoder method or the GetEncoder method, respectively, of a derived class.
The following example uses the GetString method to decode an array of UTF16-encoded bytes.
' Declare Byte array in little endian order. Dim bytes() As Byte = { &h14, &h04, &h3e, &h04, &h31, &h04, &h40, &h04, _ &h4b, &h04, &h39, &h04, &h20, &h00, &h34, &h04, _ &h35, &h04, &h3d, &h04, &h21, &h00 } Dim enc As Encoding = Encoding.GetEncoding("utf-16") Dim output As String = enc.GetString(bytes, 0, bytes.Length) outputBlock.Text += output + vbCrLf ' The example displays the following output: ' Добрый ден!