바이트 배열로 및 바이트 배열에서 복사하기
이 예제 코드는 UWP(유니버설 Windows 플랫폼) 앱에서 바이트 배열과 바이트 배열을 복사하는 방법을 보여 줍니다.
public void ByteArrayCopy()
{
// Initialize a byte array.
byte[] bytes = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
// Create a buffer from the byte array.
IBuffer buffer = CryptographicBuffer.CreateFromByteArray(bytes);
// Encode the buffer into a hexadecimal string (for display);
string hex = CryptographicBuffer.EncodeToHexString(buffer);
// Copy the buffer back into a new byte array.
byte[] newByteArray;
CryptographicBuffer.CopyToByteArray(buffer, out newByteArray);
}