views:

48

answers:

1

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?

A: 

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).

Helen