> I have been trying to implement a method to convert garbled text such
> as "???? ??????" to it's proper form as "?? ???" (which you'll see if
[quoted text clipped - 9 lines]
> somehow through a web-browser I am able to convert the garbled text. I
> have scoured the internet for help but to no avail.
Your code is currently converting from one *string* to another. You
should be converting from your original file's *binary* data into a
string using an encoding. It sounds like you still haven't got the
right encoding.
See http://www.yoda.arachsys.com/csharp/strings.html for some code
which will let you see the Unicode points for a string easily.

Signature
Jon Skeet - <skeet@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
JC - 27 Jun 2007 08:14 GMT
> Your code is currently converting from one *string* to another. You
> should be converting from your original file's *binary* data into a
> string using an encoding. It sounds like you still haven't got the
> right encoding.
I understand I need the binary data now, but then my question is, how
do I get the binary data of a filename? I have been using FileInfo to
access information about the files, is there another class I should be
using to retrieve the binary data. Ha I'm sure it's a simple solution
but I can't seem to wrap my head around it .And for the most part
I'll be dealing with ID3 tags and the data returned from the ID3 tag
methods are all strings.
Thanks for the link, I've been to that site a couple times and skimmed
through it/bookmarked it and tried to make as much sense of it as
possible but overall it was very enlightening.