class CFPropertyList::CFArray

def to_xml

convert to XML
def to_xml
  n = LibXML::XML::Node.new('array')
  @value.each do
    |v|
    n << v.to_xml
  end
  return n
end