Skip to content

Operations with Data Stored in a Container

Function: GetDataBytesFromContainer

byte[] GetDataBytesFromContainer(string name)

Description:
Retrieves the byte data stored under the specified name within the application's container.

Parameters:
- name: The unique identifier or name of the data stored within the application's container.

Return Value:
Returns a byte array containing the data retrieved from the container.

Usage Example
byte[] retrievedData = GetDataBytesFromContainer("databytes.bin");
PrintLine($"Data from container for databytes.bin: {ByteArrayToString(retrievedData)}");