# File lib/cfpropertylist/rbBinaryCFPropertyList.rb, line 216 def Binary.charset_convert(str,from,to="UTF-8") return str.dup.force_encoding(from).encode(to) if str.respond_to?("encode") Iconv.conv(to,from,str) end