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