Attempts to convert a DictAtom into a Dictionary of strings, resolving any references as necessary.

 

   

Syntax
 

[C#]
virtual Dictionary<string, string> ToStringDictionary(Atom atom)

[Visual Basic]
Overridable Function ToStringDictionary(atom As Atom) As Dictionary<string, string>

 

   

Params
 
Name Description
atom The DictAtom from which to obtain the values.
return The dictionary.

 

   

Notes
 

Attempts to convert a DictAtom into a Dictionary of strings, resolving any references as necessary.

If the atom does not resolve to an DictAtom, then the return value will be null.

Any entries which could not be coverted to the correct type will be null.

 

   

Example
 
None.