Pound symbol in a string
From: Paul Hadfield (paul_at_anon.com)
Date: 02/25/05
- Next message: Gerry O'Brien: "Re: Windows form application problem"
- Previous message: Nathan: "Setup project"
- Next in thread: Herfried K. Wagner [MVP]: "Re: Pound symbol in a string"
- Reply: Herfried K. Wagner [MVP]: "Re: Pound symbol in a string"
- Reply: Jay B. Harlow [MVP - Outlook]: "Re: Pound symbol in a string"
- Messages sorted by: [ date ] [ thread ]
Date: Fri, 25 Feb 2005 11:55:27 -0000
All,
When I use system.IO.StreamWriter to write append a string to file that
contains the GBP pound symbol, I notice that it also appends an extra
character before the pond symbol. Yet when I examine the string character by
character in the command window, the extra character is not there.
For example:
Dim Line As New StringBuilder
Line.Append("Cost=£10")
Dim SW As StreamWriter
SW = File.AppendText("C:\Test.txt")
SW.WriteLine(Line(0))
SW.Close()
If I then view the contents of the file in notepad it shows:
Cost=£10
If I use a hex editor to view the contents of the file it shows:
43 6F 73 74 3D C2 A3 31 30 0D 0A
Obviously the 0D and 0A at the end are the Cr+Lf charactors, but I don't
understand where the C2 charactor has come from??
Sorry if this is a silly question - I'm really only used to VB6 - still
trying to get my head around dot net.
Cheers,
Paul.
- Next message: Gerry O'Brien: "Re: Windows form application problem"
- Previous message: Nathan: "Setup project"
- Next in thread: Herfried K. Wagner [MVP]: "Re: Pound symbol in a string"
- Reply: Herfried K. Wagner [MVP]: "Re: Pound symbol in a string"
- Reply: Jay B. Harlow [MVP - Outlook]: "Re: Pound symbol in a string"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|