Click here to Skip to main content
15,887,083 members
Home / Discussions / C#
   

C#

 
GeneralRe: Creating new object in another thread, then BeginInvoke that object? Pin
Matthew Klein6-Mar-09 5:55
Matthew Klein6-Mar-09 5:55 
GeneralRe: Creating new object in another thread, then BeginInvoke that object? Pin
Curtis Schlak.6-Mar-09 6:59
Curtis Schlak.6-Mar-09 6:59 
GeneralRe: Creating new object in another thread, then BeginInvoke that object? Pin
Curtis Schlak.6-Mar-09 7:40
Curtis Schlak.6-Mar-09 7:40 
GeneralRe: Creating new object in another thread, then BeginInvoke that object? Pin
Dave Kreskowiak6-Mar-09 7:15
mveDave Kreskowiak6-Mar-09 7:15 
GeneralRe: Creating new object in another thread, then BeginInvoke that object? Pin
Dan Neely6-Mar-09 8:35
Dan Neely6-Mar-09 8:35 
QuestionWeb Services and Files Pin
cdpace6-Mar-09 3:49
cdpace6-Mar-09 3:49 
AnswerRe: Web Services and Files Pin
Curtis Schlak.6-Mar-09 4:08
Curtis Schlak.6-Mar-09 4:08 
QuestionUTF-8 Not Displaying Unicode Pin
Tim Beck6-Mar-09 3:21
Tim Beck6-Mar-09 3:21 
I use XmlTextReader to parse a supplied xml file. It is UTF-8 encoded, but a string read from a CDATA section does not display as a Unicode string.

Here is a very stripped down version of the xml file:

<?xml version="1.0" encoding="UTF-8"?>
<QuestionnaireDoc JobNo="New 1341 C" Description="New 1341 C" Week="2009-03-02" Template="DEV">
<QuesGroup Name="Tracks">
<TrackStudy Type="T" AdId="39240" Track="2">
<Title><![CDATA[Great Wall]]></Title>
<Content><![CDATA[It doesnâ?²t taste very good. Try xx Ciderâ?¢.]]></Content>
</TrackStudy>
</QuesGroup>
</QuestionnaireDoc>

The ReadString() method is used as follows:

o.Content = reader.ReadString(); // o.Content is String

o.Content contains "It doesnâ?²t taste very good. Try xx Ciderâ?¢.", not "It doesn′t taste very good. Try xx Cider™"

I've tried:

UTF8Encoding utf8 = new UTF8Encoding();
Byte[] encodedBytes = utf8.GetBytes(o.Content);
o.Content = utf8.GetString(encodedBytes);

but that makes no difference.

How do I decode this string? I have no control over the supplied xml file.
AnswerRe: UTF-8 Not Displaying Unicode Pin
Curtis Schlak.6-Mar-09 4:05
Curtis Schlak.6-Mar-09 4:05 
AnswerRe: UTF-8 Not Displaying Unicode Pin
Guffa6-Mar-09 6:26
Guffa6-Mar-09 6:26 
Questionabout array and property Pin
clj198705036-Mar-09 2:59
clj198705036-Mar-09 2:59 
AnswerRe: about array and property Pin
musefan6-Mar-09 3:15
musefan6-Mar-09 3:15 
AnswerRe: about array and property Pin
Xmen Real 6-Mar-09 3:24
professional Xmen Real 6-Mar-09 3:24 
AnswerRe: about array and property Pin
clj198705036-Mar-09 3:58
clj198705036-Mar-09 3:58 
GeneralRe: about array and property Pin
musefan6-Mar-09 4:11
musefan6-Mar-09 4:11 
GeneralRe: about array and property PinPopular
Curtis Schlak.6-Mar-09 4:15
Curtis Schlak.6-Mar-09 4:15 
GeneralRe: about array and property Pin
Cybernate6-Mar-09 8:55
Cybernate6-Mar-09 8:55 
AnswerRe: about array and property Pin
Curtis Schlak.6-Mar-09 9:35
Curtis Schlak.6-Mar-09 9:35 
GeneralRe: about array and property Pin
Cybernate6-Mar-09 9:38
Cybernate6-Mar-09 9:38 
GeneralRe: about array and property Pin
Curtis Schlak.6-Mar-09 9:42
Curtis Schlak.6-Mar-09 9:42 
QuestionDisabling Crystal login Pin
twsted f86-Mar-09 2:56
twsted f86-Mar-09 2:56 
AnswerRe: Disabling Crystal login Pin
ABitSmart6-Mar-09 3:27
ABitSmart6-Mar-09 3:27 
AnswerRe: Disabling Crystal login Pin
monstale6-Mar-09 5:08
monstale6-Mar-09 5:08 
QuestionFull Screen Application Pin
stancrm6-Mar-09 2:56
stancrm6-Mar-09 2:56 
AnswerRe: Full Screen Application Pin
musefan6-Mar-09 3:13
musefan6-Mar-09 3:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.