string regkey.GetValues(string,string)
Return Type: string
Parameters: string NameDelim, string ValueDelim
Description:
GetValues returns a delimited string containing the names and values
associated with the regkey. Each name/value pair is separated by NameDelim,
and each name is separated from its value by ValueDelim. For example,
if NameDelim is "&" and ValueDelim is "=", the
output would look something like:
"Name1=Value1&Name2=Value2&Name3=Value3"
Each name/value pair can then be parsed out using the split
function.
If the regey has not been opened using Open,
an empty string is returned.
For an example, see regkey.