REGMULTISZ
REG_MULTI_SZ is a Windows Registry data type used to store multiple strings within a single value. It is one of several registry value types, alongside REG_SZ (single string) and REG_EXPAND_SZ (expandable string). REG_MULTI_SZ stores a list of strings as a sequence of Unicode strings encoded in UTF-16 little endian.
The value data is a contiguous array of wide characters. Each string is null-terminated, and the sequence
Applications read and write REG_MULTI_SZ values through the Windows Registry APIs, typically RegQueryValueEx and RegSetValueEx with
REG_MULTI_SZ is employed for settings that naturally encompass multiple items, such as a list of file extensions,
Because the data is binary and uses UTF-16, some editors or tools may display it differently. Proper