2023. 2. 17. 10:06
Programming/WPF
참고 : https://sosobaba.tistory.com/441
1. Array.Copy(byte[] source, int sourceIndex, byte[] destination, int destinationIndex, int length)
- source : 복사 할 byte 배열
- sourceIndex : 복사 할 byte 배열의 시작 index
- destination : 저장 할 byte 배열
- destinationIndex : 저장 할 byte 배열의 시작 index
- length : 저장 할 data 길이
2. Array.Clear(byte[] array, int index, int length)
- array : 초기화 할 배열
- index : 초기화 할 배열의 시작 index
- length : 배열에서 초기화 할 data 길이
3. Array.Sort(byte[] array)
- 오름차순 정렬
Array.Reverse(byte[] array)
- 내림차순 정렬
'Programming > WPF' 카테고리의 다른 글
[WPF, C#] Canvas에 TextBlock 생성, Drag & Drop Event 구현 (0) | 2024.01.04 |
---|---|
[WPF, C#] ScrollViewer ListBox에 컨트롤 동적 생성 (1) | 2024.01.04 |
[WPF] UniformGrid에 동적으로 Button 생성하고 Button 속성값 변경하기 (2) | 2021.11.24 |
[WPF] Window 타이틀바 없애기 (0) | 2020.12.15 |
[WPF] MediaElement 동영상 무한재생 (0) | 2020.12.14 |