I need a purely text serialization of an object in VBScript.
Does VBScript provide any built-in support for serialization or is it up to me to enumerate the properties and put them in a string?
I need a purely text serialization of an object in VBScript.
Does VBScript provide any built-in support for serialization or is it up to me to enumerate the properties and put them in a string?
No, VBScript doesn't have any object serialization functionality built in. You will have to implement it yourself (or try finding some ready-made solutions).