複製到位元組陣列和從位元組陣列中複製
此範例程式代碼示範如何在 通用 Windows 平台 (UWP) 應用程式中複製位元組數位和從位元組陣列複製。
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);
}