System::Text::Encoding::GetChars 메서드
내용물
[
숨다
]Encoding::GetChars(ArrayPtr<uint8_t>) method
바이트 버퍼를 디코딩하여 생성된 문자를 가져옵니다.
virtual ArrayPtr<char_t> System::Text::Encoding::GetChars(ArrayPtr<uint8_t> bytes)
| 매개변수 | 형식 | 설명 |
|---|---|---|
| bytes | ArrayPtr<uint8_t> | Buffer에서 바이트를 읽기 위한. |
ReturnValue
Buffer of decoded characters.
또 보기
- Typedef ArrayPtr
- Class Encoding
- Namespace System::Text
- Library Aspose.Page for C++
Encoding::GetChars(ArrayPtr<uint8_t>, int, int, ArrayPtr<char_t>, int) method
바이트 버퍼를 디코딩하여 생성된 문자를 가져옵니다.
virtual int System::Text::Encoding::GetChars(ArrayPtr<uint8_t> bytes, int byte_index, int byte_count, ArrayPtr<char_t> chars, int char_index)
| 매개변수 | 형식 | 설명 |
|---|---|---|
| bytes | ArrayPtr<uint8_t> | Buffer에서 바이트를 읽기 위한. |
| byte_index | int | 입력 버퍼 오프셋. |
| byte_count | int | 입력 버퍼 크기. |
| chars | ArrayPtr<char_t> | Buffer에 문자를 넣기 위한 버퍼. |
| char_index | int | 출력 버퍼 오프셋. |
ReturnValue
작성된 문자 수.
또 보기
- Typedef ArrayPtr
- Class Encoding
- Namespace System::Text
- Library Aspose.Page for C++
Encoding::GetChars(ArrayPtr<uint8_t>, int, int) method
바이트 버퍼를 디코딩하여 생성된 문자를 가져옵니다.
virtual ArrayPtr<char_t> System::Text::Encoding::GetChars(ArrayPtr<uint8_t> bytes, int index, int count)
| 매개변수 | 형식 | 설명 |
|---|---|---|
| bytes | ArrayPtr<uint8_t> | Buffer에서 바이트를 읽기 위한. |
| index | int | 입력 버퍼 오프셋. |
| count | int | 입력 버퍼 크기. |
ReturnValue
Buffer of decoded characters.
또 보기
- Typedef ArrayPtr
- Class Encoding
- Namespace System::Text
- Library Aspose.Page for C++
Encoding::GetChars(const uint8_t *, int, char_t *, int) method
바이트 버퍼를 디코딩하여 생성된 문자를 가져옵니다.
virtual int System::Text::Encoding::GetChars(const uint8_t *bytes, int byte_count, char_t *chars, int char_count)
| 매개변수 | 형식 | 설명 |
|---|---|---|
| bytes | const uint8_t * | Buffer에서 바이트를 읽기 위한. |
| byte_count | int | 입력 버퍼 크기. |
| chars | char_t * | Buffer에 문자를 넣기 위한 버퍼. |
| char_count | int | 출력 버퍼 크기. |
ReturnValue
작성된 문자 수.
또 보기
- Class Encoding
- Namespace System::Text
- Library Aspose.Page for C++