System::Text::Encoding::GetString metod

Encoding::GetString(ArrayPtr<uint8_t>) method

Avkodar en buffert med bytes till en sträng.

virtual String System::Text::Encoding::GetString(ArrayPtr<uint8_t> bytes)
ParameterTypeBeskrivning
bytesArrayPtr<uint8_t>Buffer att läsa byte från.

ReturnValue

String of decoded characters.

Se även

Encoding::GetString(ArrayPtr<uint8_t>, int, int) method

Avkodar en buffert med bytes till en sträng.

virtual String System::Text::Encoding::GetString(ArrayPtr<uint8_t> bytes, int index, int count)
ParameterTypeBeskrivning
bytesArrayPtr<uint8_t>Buffer att läsa byte från.
indexintInmatningsbuffertens offset.
countintStorlek på inmatningsbuffert.

ReturnValue

String of decoded characters.

Se även

Encoding::GetString(const System::Details::ArrayView<uint8_t>&) method

Avkodar en buffert med bytes till en sträng.

virtual String System::Text::Encoding::GetString(const System::Details::ArrayView<uint8_t> &bytes)
ParameterTypeBeskrivning
bytesconst System::Details::ArrayView<uint8_t>&Buffer att läsa byte från.

ReturnValue

String of decoded characters.

Se även

Encoding::GetString(const System::Details::ArrayView<uint8_t>&, int, int) method

Avkodar en buffert med bytes till en sträng.

virtual String System::Text::Encoding::GetString(const System::Details::ArrayView<uint8_t> &bytes, int index, int count)
ParameterTypeBeskrivning
bytesconst System::Details::ArrayView<uint8_t>&Buffer att läsa byte från.
indexintInmatningsbuffertens offset.
countintStorlek på inmatningsbuffert.

ReturnValue

String of decoded characters.

Se även

Encoding::GetString(System::Details::StackArray<uint8_t, N>&) method

Avkodar en buffert med bytes till en sträng.

template<std::size_t> String System::Text::Encoding::GetString(System::Details::StackArray<uint8_t, N> &bytes)
ParameterTypeBeskrivning
bytesSystem::Details::StackArray<uint8_t, N>&Buffer att läsa byte från.

ReturnValue

String of decoded characters.

Se även

Encoding::GetString(System::Details::StackArray<uint8_t, N>, int, int) method

Avkodar en buffert med bytes till en sträng.

template<std::size_t> String System::Text::Encoding::GetString(System::Details::StackArray<uint8_t, N> bytes, int index, int count)
ParameterTypeBeskrivning
bytesSystem::Details::StackArray<uint8_t, N>Buffer att läsa byte från.
indexintInmatningsbuffertens offset.
countintStorlek på inmatningsbuffert.

ReturnValue

String of decoded characters.

Se även

Encoding::GetString(uint8_t *, int) method

Avkodar en buffert med bytes till en sträng.

virtual String System::Text::Encoding::GetString(uint8_t *bytes, int byte_count)
ParameterTypeBeskrivning
bytesuint8_t *Buffer att läsa byte från.
byte_countintStorlek på inmatningsbuffert.

ReturnValue

String of decoded characters.

Se även