ObjectDeserialize
Last updated
Was this helpful?
Loads an object serialized in a binary form from a file or as binary input
ObjectDeserialize(input=[any])input
any
true
The binary representation of the object to load, or the file path to load the object from.
data = { name: "test", value: 42 };
serialized = objectSerialize( data );
restored = objectDeserialize( serialized );
writeOutput( restored.name );
Result: test
Last updated
Was this helpful?
Was this helpful?
